-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.95 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@01/web-service-lib",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"######## INSTALL ########": "#",
"bootstrap": "lerna bootstrap",
"######## DEVELOPMENT ########": "#",
"build": "nx run-many -t build",
"watch": "nx run-many -t watch",
"test": "nx run-many -t test",
"link": "nx run-many -t link",
"unlink": "nx run-many -t unlink",
"clean": "rm -rf node_modules && nx run-many -t clean",
"format": "prettier --write ./**/*",
"lint": "prettier --check ./**/*",
"######## PRODUCTION ########": "#",
"start": "nx run-many -t start",
"######## DEPLOYMENT ########": "#",
"publish-report": "./scripts/publish-report",
"release": "npx lerna version --yes --conventional-commits --conventional-graduate --force-git-tag",
"alpha-release": "npx lerna version --yes --conventional-commits --conventional-prerelease --preid $(git rev-parse --short HEAD)",
"publish-changed": "nx affected -t publish --base=$(node -e \"console.log(process.env.NX_GIT_BASE || 'origin/main')\")",
"publish": "lerna publish --force-git-tag --conventional-commits --conventional-graduate --yes"
},
"devDependencies": {
"@01/launcher": "^1.0.15",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-eslint": "^10.1.0",
"copyfiles": "^2.4.1",
"esbuild": "^0.19.2",
"eslint": "^6.8.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^24.3.5",
"jest": "^29.6.2",
"jest-resolve": "^29.6.2",
"lerna": "^7.1.5",
"local-ssl-proxy": "^2.0.5",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"nx": "^16.8.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6",
"jest-junit": "^16.0.0"
}
}