forked from sdras/sample-vue-shop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.66 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
{
"name": "shop",
"version": "1.0.0",
"description": "Nuxt.js project",
"author": "sdras <[email protected]>",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"generate": "nuxt generate --spa",
"lint-staged": "lint-staged",
"test": "jest",
"tdd": "jest --watch --coverage",
"coverage": "jest --coverage"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "eslint --ext .js",
"*.vue": "eslint --ext .vue"
},
"dependencies": {
"axios": "^0.17.1",
"gsap": "^1.20.3",
"node-sass": "^4.7.2",
"nuxt": "^1.0.0-rc11",
"sass-loader": "^6.0.6",
"vue-stripe-elements-plus": "^0.2.6",
"vuex": "^3.0.1"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-jest": "^21.2.0",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.5.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^21.2.1",
"jest-vue-preprocessor": "^1.3.1",
"lint-staged": "^6.0.0",
"pre-commit": "^1.2.2",
"vue-jest": "^1.4.0",
"vue-test-utils": "^1.0.0-beta.8"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
},
"mapCoverage": true
}
}