-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"private": true,
"scripts": {
"build": "tsx scripts/build.ts",
"build:watch": "tsx scripts/watch.ts",
"dev": "npm run build:watch & npm run start",
"start": "serve ./dist",
"check": "run-s check:* --continue-on-error",
"check:eslint": "eslint .",
"check:stylelint": "stylelint \"**/*.css\"",
"check:ts": "tsc --noEmit",
"fix": "run-s fix:* --continue-on-error",
"fix:eslint": "eslint --fix .",
"fix:stylelint": "stylelint \"**/*.css\" --fix"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/parser": "^8.26.0",
"chokidar": "^4.0.3",
"eslint": "^9.22.0",
"eslint-plugin-perfectionist": "^4.10.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-unicorn": "^57.0.0",
"globals": "^16.0.0",
"jiti": "^2.4.2",
"lightningcss": "^1.29.2",
"npm-run-all2": "^7.0.2",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"serve": "^14.2.4",
"stylelint": "^16.15.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0"
},
"type": "module",
"engines": {
"node": ">=23.0.0",
"npm": ">=11.0.0"
}
}