-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.72 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
{
"name": "miniatauto",
"version": "1.1.0",
"description": "car selling",
"author": "NM",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "jest",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.vue --ignore-path .gitignore --ignore-pattern *.config.js .",
"jsonserver": "json-server db.json --port 3001"
},
"dependencies": {
"@nuxtjs/style-resources": "^0.1.2",
"axios": "^0.18.0",
"cross-env": "^5.2.0",
"firebase": "^7.2.1",
"json-server": "^0.14.2",
"lodash": "^4.17.11",
"nuxt": "2.6.3",
"nuxt-sass-resources-loader": "^2.0.5",
"nuxt-svg-sprite-module": "^1.0.5",
"stylelint-config-standard": "^19.0.0",
"vuetify": "^1.5.5"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.3.2",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-vue": "^5.2.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.5",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"prettier": "^1.16.4",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"sass-loader": "^7.1.0",
"vue-jest": "^3.0.2"
},
"husky": {
"pre-commit": "lint-staged",
"post-commit": "git update-index --again"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"git add"
],
"*.vue": [
"npm run lint:fix",
"git add"
]
}
}