-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
96 lines (96 loc) · 2.85 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "regraph-next",
"version": "0.0.2-beta1",
"description": "ReGraph",
"main": "build/index.js",
"typings": "build/index.d.ts",
"directories": {
"test": "test"
},
"homepage": "https://nefe.github.io/regraph/",
"scripts": {
"start": "npx rimraf _site && mkdir _site && cross-env NODE_ENV=development bisheng start -c ./bisheng.config.js",
"site": "npx rimraf _site && mkdir _site && cross-env NODE_ENV=production bisheng build -c ./bisheng.config.js",
"test": "rm -rf ./build && tsc",
"prepublish": "npm run test && npm run css",
"css": "cp src/ReScreen/ReScreen.css build/ReScreen/",
"predeploy": "npm run site",
"deploy": "gh-pages -d _site"
},
"repository": {
"type": "git",
"url": "[email protected]:nefe/regraph.git"
},
"keywords": [
"graph",
"react"
],
"author": "ne-fe",
"license": "MIT",
"devDependencies": {
"@types/lodash": "^4.14.134",
"@types/node": "^9.6.55",
"@types/react": "16.8",
"@types/react-dom": "^16.8.2",
"antd": "^3.6.5",
"ava": "^0.25.0",
"awesome-typescript-loader": "^3.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-import": "^1.6.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react": "^6.24.1",
"bisheng": "^1.3.0",
"bisheng-plugin-antd": "^1.2.2",
"bisheng-plugin-description": "^0.1.1",
"bisheng-plugin-react": "^1.1.0",
"bisheng-plugin-toc": "^0.4.0",
"classnames": "^2.2.6",
"cross-env": "^5.1.4",
"css-loader": "^0.28.4",
"css-split-webpack-plugin": "^0.2.5",
"enquire-js": "^0.2.1",
"eslint-plugin-react-hooks": "^2.3.0",
"file-loader": "^1.1.11",
"gh-pages": "^2.2.0",
"jsonml-to-react-component": "^0.2.6",
"jsonml.js": "^0.1.0",
"less-loader": "^4.0.5",
"lodash": "^4.17.11",
"lz-string": "^1.4.4",
"node-sass": "^4.6.0",
"prop-types": "^15.6.2",
"raw-js-loader": "^1.4.0",
"raw-loader": "^0.5.1",
"rc-animate": "^2.4.4",
"rc-banner-anim": "^1.0.1",
"rc-drawer": "^1.5.3",
"rc-queue-anim": "^1.5.0",
"rc-scroll-anim": "^2.5.1",
"rc-tween-one": "^1.7.3",
"react": "^16.8.6",
"react-copy-to-clipboard": "^5.0.0",
"react-document-title": "^2.0.3",
"react-dom": "^16.8.6",
"react-router": "~3.0.0",
"sass-loader": "^6.0.6",
"shx": "^0.2.2",
"style-loader": "^0.18.2",
"to-style": "^1.3.3",
"tslint-config-prettier": "^1.13.0",
"tween-functions": "^1.2.0",
"typescript": "^3.6.3",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"@types/d3-selection": "1.3.1",
"@types/d3-zoom": "1.7.1",
"@types/dagre": "^0.7.42",
"d3-selection": "1.4.1",
"d3-zoom": "1.7.1",
"dagre": "^0.8.4"
}
}