-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
102 lines (102 loc) · 3.29 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "nuxt-starter",
"version": "0.1.0",
"description": "A personnal Nuxt starter",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"stylelint": "stylelint src/**/*.scss",
"format": "prettier --ignore-path .gitignore --write ./**/*.{js,vue}",
"precommit": "npm run prettier && npm run lint",
"test": "jest test",
"e2e": "cypress run",
"e2e:open": "cypress open"
},
"author": "Simon Babay <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0-beta.47",
"@nuxtjs/component-cache": "^1.1.2",
"@nuxtjs/dotenv": "^1.1.1",
"@nuxtjs/pwa": "^2.0.8",
"@nuxtjs/router": "^1.0.1",
"nuxt-class-component": "^1.2.1",
"nuxt-edge": "^2.0.0-25448873.aaf44cf",
"nuxt-i18n": "^3.2.3",
"vue-property-decorator": "^6.1.0",
"vuelidate": "^0.7.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.47",
"@babel/plugin-proposal-decorators": "^7.0.0-beta.47",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.47",
"@babel/plugin-syntax-dynamic-import": "^7.0.0-beta.47",
"@babel/plugin-transform-runtime": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@types/node": "^10.1.2",
"@vue/test-utils": "^1.0.0-beta.16",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-loader": "^8.0.0-beta.2",
"babel-plugin-dynamic-import-node-babel-7": "^2.0.7",
"cssnano": "^3.10.0",
"deepmerge": "^2.1.0",
"dotenv": "^5.0.1",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-webpack": "^0.10.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.5.0",
"imagemin-webpack-plugin": "^2.1.5",
"jest": "^22.4.4",
"jest-vue-preprocessor": "^1.4.0",
"js-yaml": "^3.11.0",
"json-loader": "^0.5.7",
"markdown-loader": "^2.0.2",
"node-sass": "^4.9.0",
"postcss-import": "^11.1.0",
"postcss-reporter": "^5.0.0",
"prettier": "^1.12.1",
"sass-loader": "^7.0.1",
"stylelint": "^9.2.1",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.1.0",
"stylelint-webpack-plugin": "^0.10.5",
"tota11y": "^0.1.6",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"vue-eslint-parser": "^2.0.3",
"yaml-loader": "^0.5.0"
},
"peerDependencies": {
"cypress": "^2.1.0"
},
"jest": {
"transform": {
"\\.js$": "<rootDir>/node_modules/babel-jest",
"\\.vue$": "<rootDir>/node_modules/jest-vue-preprocessor",
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor"
},
"moduleNameMapper": {
"^vue$": "vue/dist/vue.common.js",
"vue-mm": "<rootDir>/internals/modules/manager.js",
"^~/(.*)$": "<rootDir>/src/$1",
"vueclass": "<rootDir>/src/vueclass.js"
},
"globals": {
"__TS_CONFIG__": "tsconfig.json",
"__TRANSFORM_HTML__": true
},
"moduleFileExtensions": ["ts", "js", "vue"],
"testRegex": "/test/unit/.*\\.(ts|js)$"
}
}