-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
72 lines (72 loc) · 1.7 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
{
"name": "vue-scscms",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "vue-cli-service serve",
"server": "nodemon --delay 2000ms -w app.js -w server server-entry.js",
"start": "concurrently -k \"npm run server\" \"npm run dev\"",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --fix"
},
"dependencies": {
"axios": "^0.18.0",
"babel-polyfill": "^6.23.0",
"bcryptjs": "^2.4.0",
"chart.js": "^2.7.3",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-jwt": "^3.2.1",
"koa-multer": "^1.0.2",
"koa-router": "^7.1.1",
"koa-static": "^4.0.3",
"koa2-history-api-fallback": "^0.0.5",
"mysql2": "^1.3.6",
"node-windows": "^1.0.0-beta.1",
"nodemailer": "^4.0.1",
"nprogress": "^0.2.0",
"vue-quill-editor": "^3.0.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"@vue/eslint-config-standard": "^3.0.4",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"concurrently": "^4.0.1",
"http-proxy-middleware": "^0.19.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"nodemon": "^1.18.4",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"no-console": 0,
"space-before-function-paren": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}