-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
46
47
48
49
50
{
"name": "queue-info",
"version": "1.0.0",
"description": "A public-facing landing page for the Illinois Queue",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"prettier": "prettier --write \"**/*.{js,jsx}\"",
"prettier-diff": "prettier --list-different \"src/**/*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/illinois/queue-info.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/illinois/queue-info/issues"
},
"homepage": "https://github.com/illinois/queue-info#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.15",
"@fortawesome/free-brands-svg-icons": "^5.7.2",
"@fortawesome/free-solid-svg-icons": "^5.7.2",
"@fortawesome/react-fontawesome": "^0.1.4",
"@mapbox/rehype-prism": "^0.3.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-mdx": "^1.2.0",
"classnames": "^2.2.6",
"date-fns": "^1.30.1",
"husky": "^1.3.1",
"next": "^8.0.3",
"next-page-transitions": "^1.0.0-beta.1",
"prettier": "^1.16.4",
"pretty-quick": "^1.10.0",
"prismjs": "^1.27.0",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-flip-move": "^3.0.3",
"react-hanger": "^1.1.4",
"reactstrap": "^7.1.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}