-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.59 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
{
"name": "nextjs-rtr",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development yarn watch:css && next",
"debug": "cross-env NODE_OPTIONS='--inspect' next",
"build": "rimraf ./build && yarn build:css && next build",
"start": "NODE_ENV=production next start -p $PORT",
"build:css": "postcss ./src/assets/styles/tailwind.css -o ./src/assets/styles/main.css",
"watch:css": "postcss ./src/assets/styles/tailwind.css -o ./src/assets/styles/main.css",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"type-check": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"next": "latest",
"react": "16.12.0",
"react-dom": "16.12.0"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "3.1.3",
"@types/node": "12.12.21",
"@types/react": "16.9.16",
"@types/react-dom": "16.9.4",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"autoprefixer": "10.2.1",
"cross-env": "7.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "5.1.1",
"postcss": "8.2.4",
"postcss-cli": "8.3.1",
"postcss-nested": "4.2.3",
"postcss-preset-env": "6.7.0",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"rimraf": "3.0.2",
"tailwindcss": "2.0.2",
"typescript": "4.0"
}
}