-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 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
77
78
79
80
81
82
83
84
{
"name": "sno2wman.dev",
"version": "1.0.0",
"description": "sno2wman.dev",
"author": {
"name": "SnO2WMaN",
"email": "sno2wman.official@gmail.com"
},
"private": true,
"scripts": {
"dev": "nuxt",
"generate": "nuxt generate --spa"
},
"lint-staged": {
"src/**/*.{js,json,md}": [
"cross-env NODE_ENV=production eslint --fix",
"prettier --write",
"git add"
],
"src/**/*.{css,scss,sass}": [
"cross-env NODE_ENV=production stylelint --fix",
"prettier --write",
"git add"
],
"src/**/*.{vue}": [
"cross-env NODE_ENV=production eslint --fix",
"cross-env NODE_ENV=production stylelint --fix",
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn run lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.3.4",
"@brandcolors/sass": "^1.3.2",
"@fortawesome/fontawesome-svg-core": "1.2.15",
"@fortawesome/free-brands-svg-icons": "5.7.2",
"@fortawesome/free-solid-svg-icons": "5.7.2",
"@fortawesome/vue-fontawesome": "0.1.5",
"@nuxtjs/icon": "^3.0.0-beta.14",
"@nuxtjs/meta": "^3.0.0-beta.14",
"@nuxtjs/style-resources": "^0.1.2",
"autoprefixer": "9.4.9",
"case-sensitive-paths-webpack-plugin": "^2.2.0",
"css-mqpacker": "^7.0.0",
"dotenv": "^7.0.0",
"eslint-loader": "^2.1.2",
"minireset.css": "^0.0.4",
"node-sass": "^4.11.0",
"nuxt": "^2.4.5",
"nuxt-imagemin": "^1.0.0",
"nuxt-webfontloader": "^1.0.0",
"postcss-short": "5.0.0",
"postcss-sorting": "4.0.1",
"sass-loader": "^7.1.0",
"sno2wman": "^2.5.2"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"commitizen": "^3.0.7",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.15.2",
"eslint-config-cold": "^1.1.5",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4",
"stylelint": "^9.10.1",
"stylelint-config-prettier": "^5.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.5.4"
}
}