-
Notifications
You must be signed in to change notification settings - Fork 368
/
package.json
40 lines (40 loc) · 1.03 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
{
"private": true,
"version": "8.0.0",
"devDependencies": {
"@eslint/js": "^9.11.1",
"@rollup/plugin-typescript": "^12.1.0",
"@types/connect": "^3.4.38",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/node-zopfli": "^2.0.5",
"@types/supertest": "^6.0.2",
"connect": "^3.7.0",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"node-zopfli": "^2.1.4",
"prettier": "^3.3.3",
"rollup": "^4.22.5",
"rollup-plugin-dts": "^6.1.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"scripts": {
"pretest": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"clean": "node ./bin/clean.mjs",
"build": "tsx ./build/build-package.ts",
"test": "jest"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
}
}