This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.1 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
{
"name": "nuxt-oreore-starter-kit",
"version": "0.1.0",
"description": "Nuxt.js starter kit",
"author": "isoppp <[email protected]>",
"browserslist": [
"> 1%",
"last 3 versions",
"ie >= 11",
"android >= 4.2",
"ios >= 9"
],
"scripts": {
"dev": "npm-run-all -p storybook nuxt:dev",
"build": "nuxt build",
"start": "nuxt start",
"nuxt:dev": "nuxt",
"generate": "nuxt generate",
"format": "npm-run-all -s format:*",
"format:js": "eslint --fix --ext .js,.vue .",
"format:vuecss": "stylelint --fix \"**/*.vue\"",
"format:scss": "stylelint --syntax scss --fix \"**/*.scss\"",
"lint": "npm-run-all -s lint*",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:css": "stylelint --syntax scss \"**/*.scss\"",
"precommit": "lint-staged",
"storybook": "start-storybook -p 9001 -c .storybook"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.scss": [
"stylelint --fix --syntax scss",
"git add"
],
"*.vue": [
"eslint --fix",
"stylelint --fix",
"git add"
]
},
"dependencies": {
"@nuxtjs/google-tag-manager": "^2.0.0",
"@nuxtjs/pwa": "^2.0.8",
"@nuxtjs/sitemap": "^0.1.1",
"node-sass": "^4.9.0",
"nuxt": "^1.4.1",
"nuxt-sass-resources-loader": "^2.0.2",
"sass-loader": "^7.0.3",
"sass-resources-loader": "^1.3.3"
},
"devDependencies": {
"@storybook/addon-storysource": "^3.4.8",
"@storybook/vue": "^3.4.8",
"babel-eslint": "^8.2.5",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"npm-run-all": "^4.1.3",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
"stylelint-scss": "^3.1.3"
}
}