-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.63 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
{
"name": "muscle-training-app",
"version": "0.0.0",
"description": "筋トレアプリ",
"author": "ikkyu-3",
"private": true,
"scripts": {
"lint": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"precommit": "yarn run lint",
"test": "jest",
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"generate": "nuxt-ts generate",
"start": "nuxt-ts start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@nuxt/typescript-runtime": "^0.2.1",
"@nuxtjs/axios": "^5.6.0",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/vuetify": "^1.9.0",
"@vue/composition-api": "^0.3.2",
"nuxt": "^2.10.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@fortawesome/fontawesome-free": "^5.11.2",
"@nuxt/typescript-build": "^0.3.1",
"@nuxtjs/eslint-config-typescript": "^0.1.3",
"@nuxtjs/eslint-module": "^1.1.0",
"@storybook/addon-actions": "^5.2.4",
"@storybook/addon-knobs": "^5.2.4",
"@storybook/addon-links": "^5.2.4",
"@storybook/addon-notes": "^5.2.4",
"@storybook/addon-viewport": "^5.2.8",
"@storybook/addons": "^5.2.4",
"@storybook/vue": "^5.2.4",
"@types/jest": "^24.0.19",
"@vue/test-utils": "^1.0.0-beta.27",
"autoprefixer": "^9.6.5",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-vue": "^2.0.2",
"css-loader": "^3.2.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-standard": ">=14.1.0",
"eslint-plugin-import": ">=2.18.2",
"eslint-plugin-jest": ">=22.19.0",
"eslint-plugin-node": ">=10.0.0",
"eslint-plugin-nuxt": ">=0.4.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": ">=4.2.1",
"eslint-plugin-standard": ">=4.0.1",
"eslint-plugin-vue": "^5.2.3",
"fork-ts-checker-webpack-plugin": "^1.5.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
"node-sass": "^4.12.0",
"nodemon": "^1.19.3",
"postcss-loader": "^3.0.0",
"postcss-sorting": "^5.0.1",
"prettier": "^1.18.2",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"stylelint": "^11.1.1",
"stylelint-config-standard": "^19.0.0",
"stylelint-scss": "^3.11.1",
"stylelint-webpack-plugin": "^1.0.2",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.0",
"vue-jest": "^3.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"yarn lint --fix",
"git add"
]
}
}