-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 938 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
{
"name": "monkey-tools-monorepo",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build --all --parallel",
"build:project": "nx build",
"test": "nx run-many --target=test --all --parallel",
"lint": "nx run-many --target=lint --all --parallel",
"e2e": "nx run-many --target=e2e --all --parallel",
"new-pack": "nx g --bundler=esbuild @nrwl/js:lib"
},
"private": true,
"dependencies": {},
"devDependencies": {
"@nrwl/esbuild": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/workspace": "15.9.2",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"esbuild": "^0.17.5",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"nx": "15.9.2",
"prettier": "^2.6.2",
"typescript": "~4.9.5"
}
}