-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
{
"name": "react-graph-editor",
"version": "0.0.0",
"description": "",
"private": true,
"scripts": {
"clean": "rimraf build",
"build:webpack": "webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "NODE_PATH=source babel-node devServer.js",
"test": "NODE_PATH=source babel-node test/index.js",
"lint": "eslint source",
"watch": "watch 'clear && npm run lint -s && npm run test -s' source",
"check": "npm run lint && npm run test && npm outdated --depth=0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-eslint": "^5.0.0-beta4",
"babel-loader": "^6.2.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.2.0",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"cheerio": "0.19.0",
"eslint": "1.10.3",
"eslint-plugin-react": "3.11.2",
"express": "4.13.3",
"redux-devtools": "^2.1.5",
"rimraf": "2.4.4",
"tap-xunit": "^1.2.1",
"tape": "4.2.2",
"watch": "0.16.0",
"webpack": "1.12.9",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.6.0"
},
"dependencies": {
"react": "0.14.3",
"react-dom": "0.14.3",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
},
"license": "MIT"
}