-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "site",
"repository": "https://kube-hpc.github.io",
"private": true,
"version": "2.6.13",
"scripts": {
"start": "rm -rf build && babel-node resources/server.js",
"build": "rm -rf build && babel-node resources/build.js",
"watch": "rm -rf build && babel-node resources/watch.js",
"docker": "rm -rf build && ./dockerfile/build.sh site",
"test": "npm run build"
},
"babel": {
"optional": [
"es7.asyncFunctions",
"es7.objectRestSpread"
]
},
"site": {
"source": "./site",
"build": "./build"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.20",
"express": "^4.13.3",
"js-yaml": "^3.4.0",
"less": "^2.7.1",
"react": "15.3.1",
"react-dom": "15.3.1",
"sane": "^1.2.0",
"webpack": "^1.12.1"
},
"dependencies": {
"react-responsive-tabs": "^2.1.0",
"redoc": "^2.0.0"
}
}