-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.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
{
"name": "expresso",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "NX_BRANCH=build yarn nx run-many --target=build",
"test": "NX_BRANCH=test yarn nx run-many --target=test",
"typecheck": "NX_BRANCH=typecheck yarn nx run-many --target=typecheck",
"prerelease": "npm-run-all test typecheck build",
"release": "npx lerna version --conventional-commits",
"publish": "npm publish --workspaces --auth-type=legacy"
},
"private": true,
"author": "masb0ymas <[email protected]>",
"license": "MIT",
"dependencies": {
"npm-run-all": "^4.1.5",
"tslib": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"lerna": "^7.4.2",
"nx": "16.6.0",
"nx-cloud": "latest",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"ts-node": "10.9.1",
"typescript": "~5.1.6"
}
}