-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
43
44
45
{
"name": "hacksc-www-2020",
"version": "1.0.0",
"description": "Website for HackSC 2020",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next build && next export && cp _redirects out/_redirects"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackSC/www-2020.git"
},
"author": "HackSC",
"license": "ISC",
"bugs": {
"url": "https://github.com/HackSC/www-2020/issues"
},
"homepage": "https://github.com/HackSC/www-2020#readme",
"dependencies": {
"imagemin-optipng": "^7.1.0",
"next": "^9.0.5",
"next-images": "^1.1.2",
"next-optimized-images": "^2.5.3",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-hotjar": "^2.0.2",
"styled-components": "^4.3.2",
"styled-reset": "^3.0.3"
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.6",
"husky": "^3.0.4",
"prettier": "^1.18.2",
"prettier-quick": "^0.0.5",
"pretty-quick": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}