-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 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
{
"name": "dbadventure",
"version": "1.0.0",
"description": "DBAdventure web",
"author": "[email protected]",
"private": true,
"scripts": {
"dev": "rm -rf .cache && node server.js",
"build": "nuxt build",
"lint": "eslint -c .eslintrc.js --ext .js,.vue .",
"fix-lint": "eslint -c .eslintrc.js --ext .js,.vue . --fix",
"test": "npm run lint"
},
"dependencies": {
"autoprefixer": "^9.7.4",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.4.0",
"css-loader": "^3.4.2",
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"express-session": "^1.17.0",
"glob": "^7.1.6",
"helmet": "^3.21.2",
"http-proxy-middleware": "^0.20.0",
"lodash": "^4.17.19",
"moment": "^2.29.4",
"morgan": "^1.9.1",
"navigator": "^1.0.1",
"ncu": "^0.2.1",
"node-sass": "^7.0.0",
"nuxt": "^2.11.0",
"postcss-loader": "^3.0.0",
"sass-loader": "^8.0.2",
"slugify": "^1.3.6",
"vue": "2.6.11",
"vue-cookie": "^1.1.4",
"vue-i18n": "8.15.3",
"vue-i18n-loader": "^1.0.0",
"vue-meta": "2.3.2",
"vue-notification": "^1.3.20",
"vuelidate": "^0.7.5",
"vuex": "^3.1.2",
"webpack": "^4.41.5"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-preset-env": "^1.7.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-vue": "^6.1.2",
"npm-check-updates": "^4.0.1"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}