-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.83 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.83 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "st",
"version": "1.0.0",
"description": "",
"main": "index.js",
"bin": {
"test": "./bin/test.js",
"react2html": "./bin/react2html.js"
},
"scripts": {
"build_test": "babel src -d dist --source-maps",
"build": "webpack --hide-modules --progress --color --config ./src/config/webpack.config.babel.js --mode production ",
"dd": "webpack-dev-server --mode development",
"test": "echo \"Error: no test specified\" && exit 1",
"server": "cross-env NODE_ENV=test nodemon --exec babel-node src/server/index.js ",
"dev": " nodemon --exec babel-node bin/react2html.js",
"serve": "npm start && npm run prod",
"admin": "webpack-dev-server --open --config ./src/config/webpack.config.admin.babel.js --mode development",
"admin-build": "webpack --config ./src/config/webpack.config.admin.babel.js --mode production"
},
"author": "robin",
"license": "ISC",
"dependencies": {
"7": "0.0.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"clean-webpack-plugin": "^1.0.1",
"commander": "^2.19.0",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"highlight.js": "^9.15.6",
"html-webpack-plugin": "^3.2.0",
"iview": "^3.3.0",
"koa": "^2.7.0",
"koa-body": "^4.0.8",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.10.1",
"koa-static": "^5.0.0",
"koa-static-cache": "^5.1.2",
"koa-views": "^6.1.5",
"marked": "^0.6.2",
"moment": "^2.24.0",
"mysql": "^2.16.0",
"node": "^11.10.0",
"nodemon": "^1.18.10",
"prop-types": "^15.7.2",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-markdown": "^4.0.6",
"react-redux": "^6.0.1",
"redux": "^4.0.1",
"sass": "^1.17.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"vue": "^2.6.7",
"vue-loader": "^15.6.4",
"vue-quill-editor": "^3.0.6",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.7",
"vuex": "^3.1.0",
"webpack": "^4.29.5"
},
"devDependencies": {
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"cross-env": "^5.2.0",
"css-modules-require-hook": "^4.2.3",
"file-loader": "^3.0.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"postcss-less": "^3.1.4",
"quill-image-extend-module": "^1.1.2",
"terser-webpack-plugin": "^1.2.2",
"url-loader": "^1.1.2",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0"
}
}