-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "testrail-reporting",
"version": "0.1.0",
"description": "Web App that lets you build custom reports for TestRail",
"private": true,
"repository": "none",
"scripts": {
"build": "NODE_ENV=production webpack --progress --colors",
"watch": "webpack --progress --colors --devtool sourcemap --watch",
"devserver": "webpack-dev-server --progress --colors --inline",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext js,jsx testrail_reporting/static/js",
"postinstall": "npm run build"
},
"dependencies": {
"babel": "^6.3.26",
"bootstrap-less": "^3.3.8",
"bootstrap-material-design": "^0.5.7",
"d3": "^3.5.12",
"flux": "^2.1.1",
"font-awesome": "^4.5.0",
"history": "^1.12.5",
"jquery": "^2.2.0",
"less": "^2.5.3",
"moment": "^2.11.0",
"nvd3": "^1.8.1",
"react": "^0.14.6",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.6",
"react-router": "^1.0.3",
"react-router-bootstrap": "^0.19.3",
"superagent": "^1.6.1"
},
"devDependencies": {
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"css-loader": "^0.23.1",
"eslint": "^1.2.1",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-react": "^3.15.0",
"file-loader": "^0.8.5",
"json-loader": "^0.5.4",
"less-loader": "^2.2.2",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.10",
"webpack-dev-server": "^1.14.1"
}
}