-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 KB
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
{
"name": "node-app-manager",
"description": "Manage your Node.js applications",
"private": true,
"author": "Art+Code Studio (Pascal Garber) <pascal@artandcode.studio>",
"license": "AGPL",
"scripts": {
"build": "yarn workspaces foreach run build"
},
"devDependencies": {
"@yarnpkg/pnpify": "^3.0.0-rc.6",
"node-gyp": "^8.1.0"
},
"workspaces": [
"backend",
"example/*",
"packages/redbird",
"packages/riba/packages/*",
"packages/riba/backend/*",
"packages/riba/infra/*",
"!packages/riba/infra/cli",
"!packages/riba/infra/doc",
"!packages/riba/infra/schematics"
],
"dependencies": {
"@ribajs/eslint-config": "workspace:*",
"@types/node": "^15.12.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/experimental-utils": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
}
}