forked from ajainarayanan/react-dag
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "react-dag",
"version": "0.1.3",
"description": "This is a base implementation of wrapping jsplumb with react + redux to be more usable in a react based environment",
"main": "dist/react-dag.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev-build": "webpack --watch -d",
"prod-build": "NODE_ENV=production webpack -p",
"lib-test-build": "NODE_ENV=libtest webpack -d"
},
"author": "ajainarayanan",
"license": "ISC",
"dependencies": {
"classname": "0.0.0",
"jsplumb": "2.2.0",
"lodash": "4.16.4",
"node-uuid": "1.4.7",
"react": "15.3.2",
"react-dom": "15.3.2",
"redux": "3.6.0"
},
"devDependencies": {
"babel-core": "6.17.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-lodash": "3.2.9",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-preset-stage-2": "6.17.0",
"babel-register": "6.16.3",
"css-loader": "0.25.0",
"enzyme": "2.4.1",
"eslint": "3.5.0",
"eslint-config-react-app": "0.2.1",
"eslint-plugin-flowtype": "2.18.1",
"eslint-plugin-import": "1.12.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"expect": "1.20.2",
"file-loader": "0.9.0",
"ignore-styles": "5.0.1",
"imports-loader": "0.6.5",
"jsdom": "9.6.0",
"less": "2.7.1",
"less-loader": "2.2.3",
"lodash-webpack-plugin": "0.10.2",
"mocha": "3.1.1",
"react-addons-test-utils": "15.3.2",
"react-dom": "15.3.2",
"script-loader": "0.7.0",
"source-map-loader": "0.1.5",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.13.2",
"webpack-livereload-plugin": "0.9.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ajainarayanan/react-dag.git"
},
"keywords": [
"react-dag",
"dag",
"jsplumb",
"reactjs",
"redux"
],
"bugs": {
"url": "https://github.com/ajainarayanan/react-dag/issues"
},
"homepage": "https://github.com/ajainarayanan/react-dag"
}