-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "vue-ecommerce-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate --modern",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"lint:fix": "eslint --ext \".ts,.js,.vue\" --fix --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,scss}\" --ignore-path .gitignore",
"lint:style:fix": "stylelint \"**/*.{vue,scss}\" --fix --ignore-path .gitignore",
"prepare": "husky install",
"test": "jest",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{vue}": [
"npm run lint"
],
"*.{scss}": [
"npm run lint:style"
]
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"@types/jest": "^27.0.2",
"core-js": "^3.15.1",
"nuxt": "^2.15.7",
"nuxt-property-decorator": "^2.9.1",
"nuxt-svg-loader": "^1.2.0",
"vue": "^2.6.14",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@cypress/vue": "^2.2.3",
"@cypress/webpack-dev-server": "^1.7.0",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.0.0",
"@vue/test-utils": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"cypress": "^9.0.0",
"eslint": "^7.29.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"html-webpack-plugin": "^4.5.2",
"husky": "^6.0.0",
"jest": "^27.0.5",
"sass": "^1.43.4",
"sass-loader": "^10.2.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.20.1",
"ts-jest": "^27.0.3",
"vue-jest": "^3.0.4",
"vuex-module-decorators": "^1.0.1"
}
}