-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "tokyo-bichiku-navi",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint:style": "stylelint \"**/*.{.css}\" --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.12.5",
"@nuxtjs/gtm": "^2.4.0",
"axios-jsonp": "^1.0.4",
"core-js": "^3.8.3",
"nuxt": "^3.0.0",
"nuxt-i18n": "^6.20.3",
"vue-cookies": "^1.7.4",
"vue-js-modal": "^2.0.0-rc.6",
"vue-localstorage": "^0.6.2"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^5.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"markuplint": "^1.5.0",
"postcss-rem": "^1.1.5",
"prettier": "^2.2.1",
"puppeteer": "^8.0.0",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-prettier": "^1.1.2",
"vue-sfc-parser": "^0.1.2"
}
}