forked from alliance-genome/agr_archive_initial_prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.97 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
{
"name": "agr",
"version": "0.0.5",
"license": "MIT",
"author": {
"name": "Travis Sheppard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/alliance-genome/agr_prototype.git"
},
"dependencies": {
"d3": "^3.5.17",
"extract-text-webpack-plugin": "^1.0.1",
"immutable": "^3.8.1",
"manifest-revision-webpack-plugin": "^0.3.0",
"react": "^15.3.2",
"react-autosuggest": "^6.1.0",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"react-select": "^1.0.0-rc.2",
"redux": "^3.6.0",
"reselect": "^2.5.4",
"sigma": "^1.2.0",
"underscore": "^1.8.3"
},
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"eslint": "^3.6.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-react": "^6.3.0",
"file-loader": "^0.9.0",
"mocha": "^3.1.0",
"mocha-webpack": "^0.6.0",
"null-loader": "^0.1.1",
"postcss-loader": "^0.13.0",
"rimraf": "^2.5.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1",
"webpack-node-externals": "^1.4.3"
},
"scripts": {
"start": "webpack-dev-server --history-api-fallback --port 2992 --hot --inline",
"prebuild": "npm run clean && npm run copy",
"build": "cross-env NODE_ENV=production webpack -p --optimize-minimize",
"clean": "rimraf src/build && mkdir src/build",
"copy": "cp -r src/public/. src/build",
"test": "NODE_ENV=test mocha-webpack --webpack-config webpack.config-test.js \"src/js_src/**/*test.js\"",
"test:watch": "NODE_ENV=test mocha-webpack --webpack-config webpack.config-test.js --watch \"src/js_src/**/*test.js\""
}
}