-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "nx-pm2",
"version": "1.0.5",
"license": "MIT",
"scripts": {
"build": "nx run-many --target=build --all=true ",
"publish": "npm publish ./dist/packages/nx-pm2-plugin --access public",
"start:example": "nx run pm2 --project=nx-pm2-example",
"test": "nx run-many --target=test --all=true"
},
"private": false,
"devDependencies": {
"@nx/eslint-plugin": "16.3.2",
"@nx/express": "^16.3.2",
"@nx/jest": "16.3.2",
"@nx/js": "16.3.2",
"@nx/linter": "16.3.2",
"@nx/node": "16.3.2",
"@nx/plugin": "^16.3.2",
"@nx/webpack": "16.3.2",
"@swc-node/register": "~1.4.2",
"@swc/cli": "~0.1.62",
"@swc/core": "~1.3.51",
"@types/express": "4.17.13",
"@types/jest": "^29.4.0",
"@types/node": "18.7.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-environment-node": "^29.4.1",
"jsonc-eslint-parser": "^2.1.0",
"nx": "16.3.2",
"pm2": "^5.3.0",
"prettier": "^2.6.2",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "~5.0.2"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@nx/devkit": "16.3.2",
"@swc/helpers": "~0.5.0",
"axios": "^1.0.0",
"express": "^4.18.1",
"tslib": "^2.3.0"
}
}