-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.47 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
62
63
64
65
{
"name": "react-static-starter",
"version": "0.0.0",
"main": "src/index.js",
"scripts": {
"start": "react-static start",
"stage": "react-static build --staging",
"build": "react-static build",
"serve": "serve dist -p 3000"
},
"repository": "github:araphel/website",
"keywords": [
"araphel.org"
],
"author": "Bartek Kus <[email protected]> (https://www.bartekus.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/araphel/website/issues"
},
"homepage": "https://github.com/araphel/website#readme",
"dependencies": {
"prop-types": "15.6.2",
"react": "16.7.0",
"react-dom": "16.7.0",
"react-hot-loader": "3.1.3",
"react-router": "4.3.1",
"react-static": "5.9.12",
"styled-components": "3.5.0-0"
},
"devDependencies": {
"babel-plugin-styled-components": "1.10.0",
"babel-eslint": "7.2.3",
"eslint-config-react-tools": "1.1.6",
"eslint-config-xo-react": "0.18.0",
"htmr": "0.7.0",
"jdown": "0.6.6",
"serve": "10.1.1",
"xo": "0.24.0"
},
"xo": {
"extends": "xo-react",
"parser": "babel-eslint",
"globals": [
"window",
"document",
"fetch"
],
"rules": {
"import/no-unresolved": 0,
"camelcase": 0,
"new-cap": [
"error",
{
"capIsNew": false
}
]
}
},
"babel": {
"extends": "react-static/.babelrc",
"plugins": [
"babel-plugin-styled-components"
]
}
}