-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "rocket-web",
"version": "0.0.1",
"description": "Website for Project Rocket",
"repository": "https://github.com/HelloTangible/rocket-web",
"license": "MIT",
"scripts": {
"start": "next start",
"dev": "next",
"build": "next build"
},
"devDependencies": {
"babel-plugin-transform-define": "^1.2.0",
"standard": "^9.0.2"
},
"dependencies": {
"auth0-js": "^8.5.0",
"axios": "^0.15.3",
"dotenv": "^4.0.0",
"fs": "0.0.1-security",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.4",
"next": "^2.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-geomicons": "^2.1.0",
"react-icons": "^2.2.3",
"react-router": "^4.0.0",
"react-sidebar": "^2.3.0",
"rebass": "^0.3.4",
"reflexbox": "^2.2.3"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"string-quotes": "single",
"property-no-unknown": [
true,
{
"ignoreProperties": [
"composes"
]
}
],
"globals": [
"window",
"location",
"localStorage"
],
"selector-pseudo-class-no-unknown": [
true,
{
"ignorePseudoClasses": [
"global",
"local"
]
}
]
}
}
}