-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"private": true,
"workspaces": [
"packages/frontend/*",
"packages/backend/*"
],
"name": "@ts-stack/workspace",
"version": "0.0.1",
"author": "Tim Kinnane <tim@nestedcode.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"start:frontend": "ts-node packages/frontend/app/src/index.ts",
"start:backend": "node -r ts-node/register packages/backend/service/src/index.ts --expose-http2",
"compile": "tsc --build --pretty",
"lint": "eslint",
"test": "jest"
}
}