-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.49 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
{
"name": "@sparksi/frontend-tooling",
"packageManager": "[email protected]",
"version": "1.0.17",
"description": "Sparks Interactive frontend-tooling. A central place for opens source packages and tools.",
"author": "Sparks Interactive <[email protected]>",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "pnpm --stream -r build",
"tw": "pnpm --stream -r tw",
"watch": "pnpm --stream -r watch:node",
"prepare": "husky install && pnpm install",
"qa": "stylelint {**,.,*/**,**/**/}*.scss",
"stylelint-scss-check": "stylelint-config-prettier-scss-check"
},
"keywords": [
"stylelint",
"stylelint-config",
"eslint",
"prettier"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.25",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.4.1",
"stylelint": "^15.11.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^10.0.0"
},
"lint-staged": {
"./web/themes/custom/**/*.ts": [
"prettier --write"
],
"*.{scss}": [
"stylelint --fix --allow-empty-input",
"prettier --write"
],
"web/themes/custom/*/src/*.css": [
"stylelint --fix --allow-empty-input",
"prettier --write"
]
},
"workspaces": [
"packages/*/*",
"web/themes/custom/*"
]
}