-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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": "vrc-movies",
"author": "Mikhail Babynichev",
"private": true,
"version": "1.0.0",
"scripts": {
"prepare": "husky install",
"dev": "cross-env NODE_ENV=development nodemon",
"prod": "cross-env NODE_ENV=production ts-node -r tsconfig-paths/register --files src/core/index.ts",
"next:prod": "next build",
"clean": "tsc --build --clean",
"prettier:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss}\"",
"prettier:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,scss}\""
},
"dependencies": {
"@aws-sdk/client-s3": "^3.478.0",
"@chakra-ui/next-js": "^2.2.0",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fastify/nextjs": "^10.0.1",
"@types/node": "^18.14.6",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"fastify": "^4.25.1",
"framer-motion": "^10.16.16",
"mini-css-extract-plugin": "^2.4.3",
"next": "^13.5.6",
"nodemon": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"sass": "^1.69.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/react": "18.2.45",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.5"
},
"lint-staged": {
"**/*.{js,ts}": [
"pnpm run prettier:fix"
]
}
}