-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.41 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
{
"name": "web_channel",
"version": "0.1.2-dev",
"description": "Web page visualization productivity tools",
"author": "yukilzw",
"scripts": {
"start": "npm run build && npm run server",
"build": "concurrently \"npm run build:edit\" \"npm run build:page\" \"npm run build:comp\"",
"server": "node ./server/index.js",
"build:edit": "webpack --progress --config ./script/webpack.config.edit.js",
"build:page": "webpack --progress --config ./script/webpack.config.page.js",
"build:comp": "webpack --progress --config ./script/webpack.config.comp.js",
"dev": "node ./script/debugComp.js -dev",
"dev:edit": "webpack-dev-server --progress --config ./script/webpack.config.edit.js -dev",
"lint": "eslint --config .eslintrc --ext .js ."
},
"dependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-object-assign": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/runtime-corejs2": "^7.7.4",
"antd": "^4.2.0",
"antd-dayjs-webpack-plugin": "^1.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"body-parser": "^1.19.0",
"clean-webpack-plugin": "^3.0.0",
"compression": "^1.7.4",
"concurrently": "^5.2.0",
"css-loader": "^0.28.11",
"ejs": "^3.1.2",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.11.1",
"express": "^4.17.1",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"less": "^3.10.3",
"less-loader": "^4.1.0",
"react": "^16.12.0",
"react-color": "^2.18.1",
"react-dom": "^16.12.0",
"react-lazyload": "^2.6.7",
"style-loader": "^0.21.0",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.9.0",
"webpackbar": "^5.0.0-3"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/yukilzw/web_channel.git"
},
"keywords": [
"web",
"editor",
"channel"
],
"license": "MIT"
}