-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 KB
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
{
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"static": "next build && next export && touch ./out/.nojekyll && echo '1313labs.com' > ./out/CNAME",
"serve-static": "serve out",
"deploy": "yarn static && gh-pages -d out -t true"
},
"dependencies": {
"next": "^9.4.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-select": "^3.1.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"gh-pages": "^2.2.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"serve": "^11.3.0",
"tailwindcss": "^1.4.6"
},
"prettier": {
"printWidth": 120
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,jsx,tsx}": [
"eslint --fix"
],
"*.{json,yml,yaml,md,scss,css}": [
"prettier --write"
]
}
}