-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.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
{
"private": true,
"name": "polychroma",
"description": "Generate better CSS gradients using alternative colour spaces & Bezier interpolation.",
"author": "Jeff <[email protected]>",
"version": "1.3.1",
"scripts": {
"build": "nuxt build",
"deploy": "np && release && npm run generate && now dist/ -p --name polychroma && now alias",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "prettier-eslint '**/*.{js,vue}' --list-different --ignore '{dist,.nuxt}/**'",
"lint:styles": "stylelint '**/*.{css,vue}' --ip '{.nuxt,dist}/**'",
"start": "nuxt start"
},
"dependencies": {
"@nuxtjs/google-analytics": "2.0.x",
"@nuxtjs/pwa": "2.6.x",
"chroma-js": "2.0.x",
"nuxt": "2.4.x"
},
"devDependencies": {
"@starptech/prettyhtml": "0.8.x",
"@zazen/eslint-config": "1.0.x",
"@zazen/stylelint-config": "1.0.x",
"eslint": "5.12.x",
"eslint-loader": "2.1.x",
"eslint-plugin-vue": "5.1.x",
"husky": "1.3.x",
"lint-staged": "8.1.x",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"stylelint": "9.10.x",
"stylelint-scss": "^3.5.2"
},
"engines": {
"node": ">8.x"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"prettier-eslint --write",
"git add"
],
"*.{css,vue}": [
"stylelint --fix",
"git add"
]
},
"now": {
"alias": "polychroma"
},
"prettier": {
"arrowParens": "always",
"htmlWhitespaceSensitivity": "ignore",
"proseWrap": "never",
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}
}