forked from vesoft-inc/nebula-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.24 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
99
100
101
102
103
104
105
106
{
"name": "nebula-dashboard",
"version": "3.1.0",
"description": "nebula-dashboard community version",
"author": "vesoft cloud team",
"nebulaVersion": "3.2.0",
"homepage": "",
"license": "ISC",
"files": [
"lib"
],
"scripts": {
"dev": "NODE_ENV=development ts-node server/dev-server.ts",
"build": "NODE_ENV=production webpack --config config/webpack.config.prod.ts",
"test": "echo \"Error: run tests from root\" && exit 1",
"pkg": "NODE_ENV=production pkg -t node14-linux-x64 server/server.js -o dashboard",
"lint-fix": "eslint 'src/**/*.{ts,tsx}' --fix"
},
"bin": "server/server.js",
"pkg": {
"assets": [
"public/**/*"
]
},
"dependencies": {
"@ant-design/charts": "^1.4.2",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@antv/g2": "^4.1.29",
"@rematch/core": "^1.4.0",
"@rematch/loading": "^1.2.1",
"antd": "4.17.3",
"axios": "^0.21.4",
"compare-versions": "^4.1.2",
"config": "^3.3.7",
"csv": "^5.5.3",
"dayjs": "^1.10.7",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"http-proxy-middleware": "^2.0.1",
"js-cookie": "^3.0.1",
"js-yaml": "^4.1.0",
"loadsh": "0.0.4",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-intl-universal": "^2.4.8",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^4.0.0",
"connect-history-api-fallback": "^1.6.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.3.0",
"cssnano": "^5.0.8",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"lerna": "^4.0.0",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.3.0",
"pkg": "^5.5.1",
"postcss": "^8.3.8",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"progress-bar-webpack-plugin": "^2.1.0",
"style-loader": "^3.3.0",
"terser-webpack-plugin": "^5.2.4",
"ts-loader": "^9.2.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"url-loader": "^4.1.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"webpack-dev-middleware": "^5.2.1",
"webpack-dev-server": "^4.2.1",
"webpack-hot-middleware": "^2.25.1",
"webpack-manifest-plugin": "^4.0.2"
}
}