-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
56
57
{
"name": "tidaltheory-monorepo",
"version": "0.0.0",
"private": true,
"type": "module",
"workspaces": [
"actions/*",
"studio",
"www"
],
"scripts": {
"build:action": "pnpm run --dir actions/read build",
"build:site": "npm run -w www build",
"dev:cms": "npm run -w studio dev",
"dev:site": "pnpm run --dir studio typegen && npm run -w www dev",
"pnpm:build:site": "pnpm run --dir www build",
"pnpm:dev:cms": "pnpm run --dir studio dev",
"pnpm:dev:site": "pnpm run --dir www dev",
"prepare": "husky install",
"test": "pnpm run --dir actions/read test"
},
"lint-staged": {
"*.css": [
"stylelint --config www/stylelint.config.cjs --fix",
"prettier --write"
],
"**/!(dist)/*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.svelte": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"devDependencies": {
"@zazen/eslint-config": "6.7.0",
"@zazen/prettier-config": "1.1.0",
"@zazen/stylelint-config": "4.0.0",
"eslint": "8.56.0",
"eslint-plugin-import-sorting": "1.0.3",
"eslint-plugin-svelte": "2.35.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.3.2",
"prettier-plugin-packagejson": "2.5.0",
"prettier-plugin-svelte": "3.2.4",
"prettier-plugin-tailwindcss": "0.6.5",
"stylelint": "16.6.1",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^8.0.0"
}
}