-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "hackduke-code-for-good-website-2018",
"version": "0.0.1",
"scripts": {
"dev": "react-static start",
"format": "prettier --write src/**/*.{js,jsx}",
"build": "react-static build",
"stage": "react-static build --staging",
"heroku-postbuild": "npm run build",
"start": "serve ./dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hack-duke/hackduke-code-for-good-website-2018.git"
},
"author": "Yunyu Lin <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-plugin-emotion": "^9.2.6",
"emotion-server": "^9.2.10",
"husky": "^1.1.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.7.0",
"react-static": "^5.9.8"
},
"dependencies": {
"detect-passive-events": "^1.0.4",
"emotion": "^9.2.6",
"memoize-one": "^4.0.2",
"react": "^16.4.2",
"react-anchor-link-smooth-scroll": "^1.0.11",
"react-dom": "^16.4.2",
"react-emotion": "^9.2.6",
"serve": "^10.0.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}