-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 967 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 967 Bytes
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
{
"name": "www-ncaq-net",
"version": "1.0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"fix": "run-p fix:*",
"fix:prettier": "prettier --write .",
"fix:stylelint": "stylelint --fix 'style/**/*.css'",
"lint": "run-p lint:*",
"lint:prettier": "prettier --check .",
"lint:stylelint": "stylelint 'style/**/*.css'",
"lint:tsc": "tsc --noEmit",
"watch": "vite build --watch"
},
"devDependencies": {
"@double-great/stylelint-a11y": "3.4.14",
"@types/node": "22.19.20",
"lightningcss": "1.32.0",
"npm-run-all2": "9.0.1",
"prettier": "3.8.3",
"stylelint": "17.13.0",
"stylelint-browser-compat": "1.0.0-beta.180",
"stylelint-config-clean-order": "10.0.0",
"stylelint-config-standard": "40.0.0",
"stylelint-declaration-block-no-ignored-properties": "3.0.0",
"typescript": "6.0.3",
"vite": "8.0.16"
},
"engines": {
"node": ">=22.22.2"
}
}