forked from Lothiraldan/saltpad
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.09 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
66
67
68
69
70
71
72
73
{
"name": "saltpad",
"description": "SaltPad is web GUI for SaltStack",
"author": "Boris Feld",
"repository": {
"type": "git",
"url": "https://github.com/tinyclues/saltpad.git"
},
"dependencies": {
"react": "^0.14.5",
"react-dom": "^0.14.5",
"react-router": "^1.0.3",
"history": "^1.17.0",
"lodash": "^4.4.0",
"baobab": "^2.3.3",
"axios": "^0.9.1",
"urijs": "^1.17.0"
},
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.19",
"babel-loader": "^5.2.2",
"babel-runtime": "",
"babel-plugin-react-transform": "^1.1.1",
"babel-preset-es2015": "",
"babel-preset-react": "",
"classnames": "^2.1.2",
"es6-promise": "^2.3.0",
"node-libs-browser": "^0.5.2",
"node-uuid": "^1.4.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"react-bootstrap-table": "^1.4.0",
"react-select": "1.0.0-beta8",
"react-mixin": "",
"react-addons-linked-state-mixin": "",
"baobab-react": "",
"standard": "^4.3.1",
"tap-spec": "^4.0.2",
"tape": "^4.0.0",
"watch": "^0.16.0",
"webpack-dev-server": "",
"css-loader": "",
"style-loader": "",
"url-loader": "",
"file-loader": "",
"bower": "",
"moment": "",
"rimraf": "^2.4.3",
"webpack": "",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0",
"express": "",
"form-urlencoded": "",
"html-webpack-plugin": "",
"extract-text-webpack-plugin": ">=1.0.1",
"cosmos-js": "^0.7.0",
"yargs": "^3.30.0"
},
"scripts": {
"clean": "rimraf dist && rimraf dist.zip",
"build:webpack": "NODE_ENV=production ./node_modules/webpack/bin/webpack.js --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack && zip -r dist.zip dist/* && md5sum dist.zip > dist.zip.md5 && sha1sum dist.zip > dist.zip.sha1",
"start": "node devServer.js",
"playground": "node devServer.js --env playground",
"lint": "eslint src"
},
"standard": {
"parser": "babel-eslint"
}
}