-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.33 KB
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
{
"name": "wxapp-style-editor",
"version": "1.0.0",
"description": "小程序样式在线编辑系统Demo",
"main": "index.js",
"scripts": {
"clean": "npx rimraf -rf app.js dao public router shared",
"webpack": "npx webpack --mode production --config ./webpack.config.js",
"build": "npm run clean && npx tsc --build ./src/server/tsconfig.json && npm run webpack",
"dev": "npm run build && export NODE_ENV=development && node app.js",
"debugger": "npm run build && export NODE_ENV=development && node --inspect app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ke1992/wxapp-style-editor.git"
},
"keywords": [
"wxapp",
"miniprogram"
],
"author": "Ke1992",
"license": "MIT",
"engines": {
"node": ">= 10.13.0"
},
"bugs": {
"url": "https://github.com/Ke1992/wxapp-style-editor/issues"
},
"homepage": "https://github.com/Ke1992/wxapp-style-editor#readme",
"dependencies": {
"@types/jquery": "^3.3.31",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"postcss": "^7.0.26",
"postcss-scss": "^2.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"sass": "^1.24.4",
"source-map": "^0.7.3",
"stylefmt": "^6.0.3"
},
"devDependencies": {
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-static": "^4.0.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.1.6",
"@types/sass": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"autoprefixer": "^9.7.3",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.12.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.17.0",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"stylelint": "^12.0.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.13.0",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}