-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "test-platform",
"version": "1.0.0",
"description": "Alfresco Test Platform ",
"main": "index.js",
"scripts": {
"dev": "webpack --progress --colors --watch",
"build": "webpack -p",
"start": "webpack-dev-server --inline --content-base ./public --host=0.0.0.0",
"start:dev": "webpack-dev-server --inline --content-base ./public --history-api-fallback --host=0.0.0.0",
"start:prod": "webpack && node app/server.js",
"test": "nyc mocha './test/**/*.js' --compilers js:babel-core/register"
},
"author": "Michael Suzuki",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.3.14",
"babel-runtime": "^6.3.19",
"body-parser": "^1.14.2",
"d3": "^3.5.16",
"express": "^4.13.3",
"history": "^1.17.0",
"react": "^0.14.7",
"react-bootstrap": "^0.28.3",
"react-dom": "^0.14.7",
"react-router": "^2.0.0",
"superagent": "^1.8.1"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-plugin-transform-runtime": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"expect": "^1.19.0",
"expect-jsx": "^2.5.1",
"mocha": "^2.4.5",
"nyc": "^6.4.4",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}