-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "bswatcher.com",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"webpack": "nuxt webpack",
"backend": "nodemon backend.js",
"backend:maintenance": "cross-env MAINTENANCE_MODE=1 nodemon backend.js"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"ant-design-vue": "^1.7.7",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"bookshelf": "^1.2.0",
"core-js": "^3.15.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dayjs": "^1.10.6",
"dotenv": "^8.2.0",
"exceljs": "^4.2.1",
"express": "^4.17.1",
"form-data": "^4.0.0",
"knex": "^0.95.4",
"mocha": "^8.4.0",
"mustache": "^4.2.0",
"mysql": "^2.18.1",
"nodemailer": "^6.5.0",
"nuxt": "^2.15.7",
"pg": "^8.5.1",
"postgresql": "0.0.1",
"randomstring": "^1.1.5",
"redirect-ssl": "^3.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^7.29.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"nodemon": "^2.0.12",
"nuxt-purgecss": "^1.0.0"
},
"engines": {
"node": "16.13.2"
}
}