forked from wangtunan/vue-mooc
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "vue-mooc",
"version": "0.1.0",
"private": true,
"scripts": {
"node": "nodemon server/app.js --exec babel-node --presets env",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepess build docs",
"depoly": "depoly.sh"
},
"dependencies": {
"axios": "^0.19.0",
"babel-plugin-component": "^1.1.1",
"babel-preset-env": "^1.7.0",
"core-js": "^2.6.5",
"crypto-js": "^4.0.0",
"element-ui": "^2.10.1",
"good-storage": "^1.1.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-router": "^8.0.8",
"koa-session": "^5.13.1",
"lodash": "^4.17.15",
"mongoose": "^5.9.7",
"nodemon": "^2.0.2",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue": "^2.6.10",
"vue-router": "3.1.3",
"vuepress": "^1.0.3",
"vuex": "^3.1.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.9.0",
"@vue/cli-plugin-eslint": "^3.9.0",
"@vue/cli-service": "^3.9.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.6.10"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}