-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.85 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
{
"name": "sync-up",
"version": "1.0.0",
"description": "My top-notch Nuxt.js project",
"author": "Mark Terence",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest",
"npm-i": "yarn --registry https://registry.npmjs.org"
},
"lint-staged": {
"*.{js,vue}": "yarn lint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@akryum/winattr": "^3.0.0",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/dotenv": "^1.4.0",
"@nuxtjs/firebase": "^5.0.7",
"@nuxtjs/pwa": "^3.0.0-0",
"adm-zip": "^0.4.14",
"archiver": "^4.0.1",
"body-parser": "^1.19.0",
"bootstrap": "^4.1.3",
"bootstrap-vue": "^2.0.0",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-session": "^1.17.1",
"firebase": "^7.14.2",
"firebase-admin": "^8.11.0",
"fs-extra": "^9.0.0",
"lodash": "^4.17.19",
"lowdb": "^1.0.0",
"nodeJs-zip": "^1.0.4",
"nuxt": "^2.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"core-js": "2.6.7",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.0",
"jest": "^24.1.0",
"lint-staged": "^10.0.0",
"nodemon": "^1.18.9",
"prettier": "^1.19.1",
"stylelint": "^10.1.0",
"vue-jest": "^4.0.0-0"
}
}