-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.32 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
{
"name": "graph-editor",
"version": "0.0.0",
"description": "A simple graph editor using react.js and redux.",
"scripts": {
"start": "http-server -p 8000",
"dev": "webpack -d --watch & http-server -p 8000",
"build": "webpack -p",
"test": "mocha src/test --recursive --compilers js:babel-core/register",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/chrisfisher/graph-editor.git"
},
"license": "MIT",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"lodash": "^4.17.4",
"node-uuid": "^1.4.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-draggable": "^1.3.7",
"react-redux": "^4.4.6",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-thunk": "^2.2.0",
"reselect": "^2.5.4"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-plugin-lodash": "^3.1.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.22.0",
"enzyme": "^2.0.0",
"expect": "^1.16.0",
"mocha": "^2.2.5",
"node-libs-browser": "^1.0.0",
"react-addons-perf": "^15.4.2",
"react-addons-test-utils": "^15.0.1",
"webpack": "^1.9.11"
}
}