-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "ixy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"preview": "npm run build && wrangler pages dev",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write --ignore-path .gitignore \"./**/*.{js,jsx,ts,tsx,json}\"",
"deploy": "npm run build && wrangler pages deploy"
},
"dependencies": {
"@types/animejs": "^3.1.7",
"@types/node": "18.15.7",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"animejs": "^3.2.1",
"classnames": "^2.3.2",
"destyle.css": "^4.0.1",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"next": "13.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-transition-group": "^4.4.5",
"sass": "^1.77.6",
"typescript": "5.0.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@svgr/webpack": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.0",
"@types/react-transition-group": "^4.4.10",
"autoprefixer": "^10.4.14",
"eslint-config-prettier": "^8.8.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.2.7",
"ts-jest": "^29.0.5",
"wrangler": "^3.75.0",
"zod": "^3.23.8"
}
}