-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) · 2.81 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
97
98
{
"name": "coderoad",
"version": "1.0.11",
"description": "codebase viewer based on dependence analysis",
"keywords": [
"code",
"dependency",
"analysis"
],
"main": "index.js",
"bin": {
"coderoad": "./cli/index.js"
},
"scripts": {
"start:client": "webpack-dev-server --config ./client/config/webpack.config.js --mode development",
"start:single": "webpack-dev-server --config ./client/config/webpack.single.config.js --mode development",
"build:client": "webpack --config ./client/config/webpack.config.js --mode production",
"build:single": "webpack --config ./client/config/webpack.single.config.js --mode production",
"start:server": "nodemon ./server/index.js",
"lint": "eslint --ext .js server client/src cli",
"test": "jest",
"prepublish": "yarn build:single"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waningflow/CodeRoad.git"
},
"author": "waningflow",
"license": "ISC",
"bugs": {
"url": "https://github.com/waningflow/CodeRoad/issues"
},
"homepage": "https://github.com/waningflow/CodeRoad#readme",
"dependencies": {
"@koa/cors": "2",
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"axios": "^0.21.1",
"commander": "^2.20.0",
"d3-hierarchy": "^1.1.8",
"d3-selection": "^1.4.0",
"d3-zoom": "^1.7.3",
"dependency-cruiser": "4.16.1",
"directory-tree": "^2.2.1",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"re-resizable": "^4.11.0",
"react": "^16.8.6",
"react-ace": "^6.5.0",
"react-dom": "^16.8.6",
"react-ga": "^2.5.7",
"string-pixel-width": "^1.9.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@webpack-cli/init": "^0.1.5",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.5",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"clean-webpack-plugin": "^2.0.1",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"flow-bin": "^0.97.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"regenerator-runtime": "^0.13.2",
"style-loader": "^0.23.1",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1"
},
"babel": {
"presets": [
"@babel/env",
"@babel/react",
"@babel/flow"
],
"plugins": [
[
"@babel/transform-runtime"
],
"@babel/plugin-proposal-class-properties"
]
}
}