-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.08 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
41
42
43
44
{
"name": "asn1-schema-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"jest": "^29.7.0",
"lerna": "^8.1.9",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"scripts": {
"test": "jest",
"build": "lerna run build",
"rebuild": "lerna run rebuild",
"clear": "lerna run --parallel clear",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"create": "ts-node scripts/create_package.ts",
"prepub": "yarn run build",
"pub": "lerna publish",
"bootstrap": "yarn",
"bootstrap:upgrade": "yarn upgrade-interactive --latest",
"upgrade": "yarn upgrade-interactive --latest",
"coverage": "jest --coverage"
},
"resolutions": {
"cliui": "^8.0.1",
"path-scurry": "^2.0.0"
},
"dependencies": {
"@types/rimraf": "^4.0.5",
"rimraf": "^6.0.1"
}
}