-
-
Notifications
You must be signed in to change notification settings - Fork 98
/
package.json
34 lines (34 loc) · 853 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
{
"name": "pgtyped",
"version": "0.0.1",
"main": "index.js",
"author": "Adel Salakh",
"license": "MIT",
"scripts": {
"clean": "rm -r packages/*/lib",
"build": "lerna run build",
"watch": "lerna run --parallel --stream watch -- --preserveWatchOutput",
"lint": "tslint --project tsconfig.json -t verbose",
"lint!": "npm run lint -- --fix",
"test": "npm run lint && lerna run --stream test"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "^22.0.0",
"jest": "29.7.0",
"lerna": "^8.0.0",
"prettier": "2.8.8",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "5.0.4"
},
"dependencies": {
"io-ts": "^2.1.2"
}
}