-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.92 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
59
60
61
62
63
64
{
"name": "nextjs_boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"dev": "NODE_OPTIONS='--inspect' next dev",
"postbuild": "next-sitemap",
"build": "next build",
"start": "next start",
"clean": "rm -rf node_modules package-lock.json yarn.lock .cache .next **/node_modules **/package-lock.json **/yarn.lock **/.cache **/.next"
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"antd": "^5.6.3",
"autoprefixer": "^10.4.14",
"axios": "^1.4.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.2",
"next": "^13.4.9",
"next-sitemap": "^2.5.10",
"postcss": "^8.4.25",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "^3.3.2",
"ts-node": "^10.7.0",
"turbo": "latest",
"typescript": "^5.1.6",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/node": "^18.0.0",
"@types/react": "^17.0.40",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"babel-plugin-import": "^1.13.3",
"eslint": "^8.18.0",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-no-relative-import-paths": "^1.5.2",
"eslint-plugin-prettier": "^4.1.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.7.1",
"styled-reset": "4.4.1",
"stylelint": "^14.6.0",
"stylelint-config-standard": "^25.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix -c .eslintrc.js",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write",
"*.{scss,css}": "stylelint --fix"
}
}