forked from haystack/nb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "nb-backend-test-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node ./bin/www",
"dev": "cross-env NODE_ENV=dev nodemon ./bin/www",
"http": "node ./bin/wwwhttp",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test": "jest test"
},
"engines": {
"node": "10.11.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-regular-svg-icons": "^5.8.2",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/vue-fontawesome": "^0.1.6",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.2",
"debug": "^4.0.1",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-fileupload": "^1.2.0",
"express-session": "^1.17.1",
"generate-password": "^1.5.1",
"html2plaintext": "^2.1.2",
"jsonwebtoken": "^8.5.1",
"luxon": "^1.25.0",
"morgan": "^1.9.1",
"multer": "^1.4.2",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.15",
"nodemon": "^2.0.7",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pdfjs-dist": "^2.6.347",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"randomstring": "^1.1.5",
"sequelize": "^5.7.1",
"socket.io": "^3.0.5",
"strip-bom-stream": "^4.0.0",
"v-tooltip": "^2.0.2",
"vue": "^2.6.14",
"vue-datetime": "^1.0.0-beta.14",
"vue-good-table": "^2.21.1",
"vue-js-modal": "^1.3.31",
"vue-json-csv": "^1.2.12",
"vue-jwt-decode": "^0.1.0",
"vue-notification": "^1.3.20",
"vue-router": "^3.0.6",
"vue-simple-suggest": "^1.9.5",
"vue-visible": "^1.0.2",
"vuejs-datepicker": "^1.5.4",
"vuejs-datetimepicker": "^1.1.13",
"vuejs-loading-screen": "^1.0.9",
"weekstart": "^1.0.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.5.3",
"@vue/cli-plugin-eslint": "^3.0.3",
"@vue/cli-service": "^3.7.0",
"csv-parser": "^3.0.0",
"install-peers": "^1.0.3",
"jest": "^24.7.0",
"mysql2": "^2.2.5",
"nodemailer": "^6.4.17",
"sequelize-cli": "^6.2.0",
"supertest-session": "^4.0.0",
"uuid": "^8.3.2",
"vue-template-compiler": "^2.5.17"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}