-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
58 lines (58 loc) · 1.91 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
{
"name": "vuejs-jp.org",
"dependencies": {
"@nuxt/content": "^1.14.0",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/i18n": "^7.0.3",
"cookie-universal-nuxt": "^2.1.3",
"core-js": "^3.15.1",
"normalize.css": "^8.0.1",
"nuxt": "^2.15.8",
"portal-vue": "^2.1.7",
"postcss-custom-properties": "^9.1.1",
"postcss-nested": "^4.2.1",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vuelidate": "^0.7.6",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@intlify/eslint-plugin-vue-i18n": "^1.2.0",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@types/jest": "^25.2.1",
"@types/node": "^16.7.10",
"@types/vuelidate": "^0.7.15",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"jest": "^27.0.5",
"prettier": "^2.3.2",
"stylelint": "^13.3.3",
"stylelint-config-recess-order": "^2.0.4",
"ts-jest": "^27.0.3",
"vue-jest": "^3.0.5"
},
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "NUXT_HOST=0.0.0.0 nuxt",
"generate": "nuxt generate",
"lint": "yarn lint:ts && yarn lint:css",
"lint:css": "stylelint --fix \"./**/*.{css,vue}\" --ignore-path .gitignore",
"lint:css:fail": "stylelint \"./**/*.{css,vue}\" --ignore-path .gitignore",
"lint:fail": "yarn lint:ts:fail && yarn lint:css:fail",
"lint:ts": "eslint --fix --ext .ts,.js,.vue,.json --ignore-path .gitignore .",
"lint:ts:fail": "eslint --ext .ts,.js,.vue,.json --ignore-path .gitignore .",
"start": "nuxt start",
"test": "jest --config ./jest.config.js"
}
}