-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
40 lines (40 loc) · 1 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
{
"name": "ts-tools",
"description": "TypeScript Tools for Node.js",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/dist\"",
"build": "tsc --build",
"watch": "npm run build -- -w",
"pretest": "npm run lint && npm run build",
"test": "node --test --enable-source-maps",
"lint": "eslint",
"prettify": "prettier . --write"
},
"devDependencies": {
"@types/node": "20",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/source-map-support": "^0.5.10",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"memfs": "^4.15.1",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"rimraf": "^6.0.1",
"typescript": "~5.7.2",
"typescript-eslint": "^8.18.2",
"webpack": "^5.97.1"
},
"engines": {
"node": ">=20",
"npm": ">=8"
},
"author": "Avi Vahl <avi.vahl@wix.com>",
"license": "MIT",
"private": true
}