-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "ngparty-web",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">= 14",
"yarn": ">= 1.22"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"deploy": "rm -rf out && yarn build && yarn export && touch out/.nojekyll",
"deploy:gh": "cp -R out/ ../ngparty.github.io/",
"format:base": "prettier --ignore-path .gitignore \"**/*.{js,jsx,ts,tsx,css,md,html}\"",
"format": "yarn format:base --write",
"format:check": "yarn format:base --check",
"ts-check": "yarn tsc",
"lint": "echo \"TODO\" && exit 0",
"test": "echo \"TODO\" && exit 0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"next": "9.2.2",
"react": "16.13.0",
"react-dom": "16.13.0"
},
"devDependencies": {
"@types/node": "12.12.7",
"@types/react": "16.9.23",
"@types/styled-jsx": "2.2.8",
"@types/webpack": "4.41.7",
"husky": "4.2.3",
"lint-staged": "10.0.8",
"prettier": "1.19.1",
"raw-loader": "4.0.0",
"styled-jsx": "3.2.4",
"typescript": "3.8.3"
}
}