-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (43 loc) · 1.18 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
{
"name": "wys",
"version": "0.1.0",
"main": "main.js",
"license" : "GPL-3.0",
"scripts": {
"start": "ENVIRONMENT=DEV electron .",
"build": "webpack",
"watch": "webpack-dev-server --hot --inline --display-error-details",
"test": "mocha-webpack --webpack-config webpack.config-test.js \"test/**/*.test.js\""
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"css-loader": "^0.23.1",
"electron-prebuilt": "^1.3.3",
"mocha": "^3.1.0",
"mocha-webpack": "^0.6.0",
"node-sass": "^3.8.0",
"sass-loader": "^4.0.0",
"source-map-support": "^0.4.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "1.14.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"bluebird": "^3.4.6",
"nedb": "^1.8.0",
"ramda": "^0.22.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0",
"uuid": "^2.0.2"
}
}