-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.26 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
{
"type": "module",
"private": true,
"packageManager": "pnpm@9.14.2",
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"lint": "pnpm eslint && pnpm stylelint",
"lint:fix": "pnpm eslint:fix && pnpm stylelint:fix",
"preinstall": "npx only-allow pnpm",
"stylelint": "stylelint --ignore-path .gitignore \"{website,packages}/**/*.{css,scss}\"",
"stylelint:fix": "stylelint --ignore-path .gitignore \"{website,packages}/**/*.{css,scss}\"",
"website:build": "pnpm --filter website... run build",
"website:dev": "pnpm --filter website run dev",
"website:start": "pnpm website:build && pnpm --filter website run start",
"website:vercel": "cross-env VERCEL=1 pnpm --filter website... run build"
},
"devDependencies": {
"@ntnyq/eslint-config": "3.9.0",
"@types/node": "22.10.1",
"cross-env": "7.0.3",
"eslint": "9.16.0",
"stylelint": "16.11.0",
"stylelint-config-clean-order": "6.1.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-config-tailwindcss": "0.0.7",
"stylelint-scss": "6.10.0",
"typescript": "5.7.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"overrides": {
"react": "19.0.0-rc.1",
"react-dom": "19.0.0-rc.1"
}
}
}