-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
35 lines (35 loc) · 928 Bytes
/
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
{
"name": "browserl.ist",
"private": true,
"homepage": "https://browsersl.ist/",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=22"
},
"packageManager": "[email protected]",
"scripts": {
"start": "pnpm -r start",
"prebuild": "pnpm -r prebuild",
"build": "pnpm -r build",
"test:js": "eslint .",
"test:css": "stylelint **/*.css",
"test:checks": "node scripts/check-versions.js",
"test:audit": "pnpm audit --prod",
"test": "pnpm run prebuild && pnpm build && pnpm run --recursive --include-workspace-root /^test:/"
},
"dependencies": {
"ssdeploy": "^0.9.3"
},
"devDependencies": {
"@logux/eslint-config": "^53.4.0",
"@logux/stylelint-config": "^0.20.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"nano-staged": "^0.8.0",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"stylelint": "^16.9.0",
"svgo": "^3.3.2"
}
}