generated from fvastu/nextjs-chakra-tailwind-starter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.75 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
51
52
53
54
55
56
57
58
{
"name": "fait",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install",
"test": "jest",
"coverage": "jest --coverage",
"clean": "rm -rf node_modules package-lock.json",
"deploy": "sh deploy.sh",
"start:dev": "cross-env NODE_ENV=development node your-app.js",
"start:prod": "cross-env NODE_ENV=production node your-app.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run test-all"
}
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@chakra-ui/theme-tools": "^2.1.2",
"@fontsource/montserrat": "^5.0.18",
"@fvastu/animated-on-scroll-stack": "^1.0.3",
"next": "^14.2.5",
"react": "^18.3.1",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@types/node": "^18.19.42",
"@types/react": "^18.3.3",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-react": "^7.35.0",
"husky": "^8.0.3",
"postcss": "^8.4.40",
"prettier": "2.7.1",
"tailwindcss": "^3.4.7",
"typescript": "^4.9.5"
}
}