-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.2 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
73
74
75
76
77
78
79
80
81
{
"name": "flipbook",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint; eslint srv --ext .js",
"express": "NODE_ENV=dev vue-cli-service express:watch",
"express:run": "vue-cli-service express:run",
"stylelint": "stylelint src/**/*.{vue,scss}"
},
"dependencies": {
"activedirectory2": "^1.3.0",
"app-root-path": "^3.0.0",
"arrify": "^2.0.1",
"axios": "^0.19.2",
"bookshelf": "^1.1.1",
"bookshelf-soft-delete": "^5.0.0",
"config": "^3.3.1",
"connect-redis": "^4.0.4",
"cookie-parser": "^1.4.5",
"core-js": "^3.6.4",
"express-query-boolean": "^2.0.0",
"express-session": "^1.17.1",
"fs-extra": "^9.0.0",
"gm": "^1.23.1",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.15",
"moment": "^2.26.0",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pdf2pic": "^1.4.0",
"pg": "^8.2.0",
"redis": "^3.0.2",
"toastr": "^2.1.4",
"vue": "^2.6.11",
"vue-lottie": "^0.2.1",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.1.6",
"vuelidate": "^0.7.5",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2"
},
"devDependencies": {
"@babel/polyfill": "^7.7.0",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-plugin-eslint": "~4.3.0",
"@vue/cli-plugin-router": "^4.3.1",
"@vue/cli-service": "~4.3.0",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.3.1",
"bootstrap-vue": "^2.13.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-sort-destructure-keys": "^1.3.4",
"eslint-plugin-vue": "^6.2.2",
"husky": "^4.2.5",
"jquery": "^3.5.1",
"mutationobserver-shim": "^0.3.3",
"popper.js": "^1.16.0",
"portal-vue": "^2.1.6",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"stylelint": "^13.5.0",
"stylelint-config-recommended": "^3.0.0",
"vue-cli-plugin-bootstrap-vue": "~0.6.0",
"vue-cli-plugin-express": "^1.0.2",
"vue-template-compiler": "^2.6.11"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run stylelint"
}
}
}