-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.83 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
{
"name": "phelomi",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:front": "vue-cli-service serve --open --port 8080",
"build:front": "vue-cli-service build --report",
"lint": "vue-cli-service lint",
"dev:back": "nodemon --exec babel-node --config-file ./server/babel.config.js server/index.js",
"build:back": "babel server --out-dir lib --config-file ./server/babel.config.js",
"prod:back": "node lib/index.js",
"dev:api": "apidoc -i server/routes/api/ -o apidoc/ && http-server apidoc/. -p 4000 -o"
},
"nodemonConfig": {
"delay": "3000",
"ignore": [
"src/*"
]
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@mdi/font": "^3.3.92",
"axios": "^0.18.0",
"bcrypt": "^3.0.3",
"body-parser": "^1.18.3",
"connect-mongo": "^2.0.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"express-session": "^1.15.6",
"helmet": "^3.15.0",
"js-cookie": "^2.2.0",
"lodash": "^4.17.11",
"mongodb": "^3.1.10",
"mongoose": "^5.4.0",
"quill": "^1.3.6",
"register-service-worker": "^1.5.2",
"roboto-fontface": "*",
"svg-captcha": "^1.3.12",
"vue": "^2.6.8",
"vue-router": "^3.0.1",
"vue2-editor": "^2.6.6",
"vuetify": "^1.5.4",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@vue/cli-plugin-babel": "^3.3.0",
"@vue/cli-plugin-eslint": "^3.3.0",
"@vue/cli-service": "^3.3.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"nodemon": "^1.18.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"vue-cli-plugin-vuetify": "^0.4.6",
"vue-template-compiler": "^2.6.8",
"vuetify-loader": "^1.0.5"
}
}