-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.29 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": "polychroma",
"version": "2.1.2",
"private": true,
"description": "Generate better CSS gradients using alternative colour spaces & Bezier interpolation.",
"author": "Jeff Nelson (https://tidaltheory.io)",
"scripts": {
"build": "nuxt build",
"changeset": "changeset add",
"deploy": "np && release && npm run generate && now dist/ -p --name polychroma && now alias",
"dev": "nuxt",
"generate": "nuxt generate",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint '**/*.{js,vue}' --fix --ignore-pattern '.nuxt/**' --ignore-pattern 'dist/**' --ignore-pattern 'static/**'",
"lint:styles": "stylelint '**/*.{css,vue}' --ip '{.nuxt,dist}/**'",
"start": "nuxt start",
"test": "npm run lint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint --fix",
"*.{css,vue}": "stylelint --fix",
"package.json": "prettier --write"
},
"prettier": {
"htmlWhitespaceSensitivity": "strict",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@nuxtjs/google-analytics": "2.4.0",
"@nuxtjs/markdownit": "1.2.10",
"@nuxtjs/pwa": "3.3.5",
"chroma-js": "2.1.0",
"nuxt": "2.15.4"
},
"devDependencies": {
"@changesets/changelog-github": "0.3.0",
"@changesets/cli": "2.14.1",
"@nuxtjs/tailwindcss": "4.0.2",
"@tailwindcss/typography": "0.4.0",
"@zazen/eslint-config": "2.1.x",
"@zazen/stylelint-config": "1.0.x",
"autoprefixer": "10.2.5",
"eslint": "7.14.x",
"eslint-plugin-vue": "7.1.x",
"husky": "4.3.x",
"import-sort-style-python": "1.0.2",
"lint-staged": "10.5.x",
"postcss": "8.2.9",
"postcss-advanced-variables": "3.0.x",
"prettier": "2.1.x",
"prettier-plugin-import-sort": "0.0.6",
"prettier-plugin-packagejson": "2.2.x",
"stylelint": "13.8.x",
"tailwindcss": "2.0.4",
"tailwindcss-capsize": "1.2.2"
},
"engines": {
"node": ">12.x"
},
"importSort": {
".js,.ts,.vue": {
"parser": "babylon",
"style": "python",
"options": {
"knownFramework": [
"@nuxt",
"nuxt",
"@vue",
"vue"
],
"knownFirstparty": [
"~"
]
}
}
}
}