-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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
78
{
"name": "react-dag",
"version": "2.0.0-alpha-8",
"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",
"typings": "dist/react-dag",
"scripts": {
"start:dev": "webpack-dev-server",
"lib:build": "webpack --config=webpack.config.lib.js",
"test": "cypress run",
"test:watch": "cypress open"
},
"files": [
"dist",
"index.d.ts"
],
"author": "ajainarayanan",
"license": "ISC",
"dependencies": {
"@ajainarayanan/react-pan-zoom": "^0.0.1",
"jsplumb": "2.5.12",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@epegzz/sass-vars-loader": "^2.0.2",
"@types/classnames": "^2.2.3",
"@types/lodash.clonedeep": "^4.5.3",
"@types/react": "^16.0.22",
"@types/react-dom": "^16.0.3",
"@types/uuid": "^3.4.3",
"classnames": "2.2.5",
"css-loader": "^0.28.7",
"cypress": "^3.3.2",
"dagre": "^0.8.1",
"fork-ts-checker-webpack-plugin": "^0.2.8",
"glamor": "^2.20.40",
"global": "^4.3.2",
"html-webpack-plugin": "^2.30.1",
"lodash.clonedeep": "^4.5.0",
"node-sass": "^4.6.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"svg-sprite-loader": "^3.4.1",
"ts-loader": "^3.1.1",
"tslint": "^5.8.0",
"typescript": "^2.6.1",
"uglifyjs-webpack-plugin": "^1.1.5",
"webpack": "3.8.1",
"webpack-dev-server": "2.9.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/ajainarayanan/react-dag.git"
},
"keywords": [
"react-dag",
"dag",
"jsplumb",
"reactjs"
],
"bugs": {
"url": "https://github.com/ajainarayanan/react-dag/issues"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
".scss$": "<rootDir>/__mocks__/styleMocks.js"
}
},
"homepage": "https://github.com/ajainarayanan/react-dag"
}