This repository has been archived by the owner on Aug 22, 2023. It is now read-only.
generated from dev-protocol/template-repos-static
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "gendou-app",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt generate",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{vue,css}\" --ignore-path .gitignore",
"lint": "yarn lint:js && yarn lint:style",
"test": "jest",
"vercel-build": "yarn global add node-gyp-build husky",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@nuxtjs/axios": "5.13.6",
"ant-design-vue": "1.7.8",
"core-js": "3.21.1",
"nuxt": "2.15.8",
"nuxt-client-init-module": "0.3.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "9.0.0",
"@nuxtjs/eslint-module": "3.0.2",
"@nuxtjs/stylelint-module": "4.1.0",
"@vue/test-utils": "1.3.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"electron": "17.1.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-nuxt": "3.2.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.20.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.6",
"prettier": "2.6.0",
"sass": "1.49.9",
"sass-loader": "10.2.1",
"stylelint": "13.13.1",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "22.0.0",
"vue-jest": "3.0.7"
}
}