-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "hackernews-typescript",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"start": "parcel index.html",
"prebuild": "rimraf dist && npm run check-types",
"build": "parcel build index.html",
"prettier": "prettier src --write",
"prezip:build": "npm run build",
"check-types": "tsc --noEmit",
"zip:build": "cp manifest.json dist; cp ./*.png dist; cd dist; zip -r ../dist.zip * -x '*.DS_Store'"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"emotion-theming": "^10.0.27",
"global": "^4.4.0",
"husky": "^4.2.5",
"now-cli": "^0.0.0",
"parcel": "^2.0.0-alpha.3.2",
"prettier": "^2.0.5",
"react": "^0.0.0-experimental-e5d06e34b",
"react-dom": "^0.0.0-experimental-e5d06e34b",
"rimraf": "^3.0.2",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"typescript": "^3.8.3"
},
"prettier": {
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
}
}