This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.89 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@effect-ts-demo/todo",
"author": "Patrick Roza <[email protected]>",
"license": "MIT",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"libs/packages/*"
]
},
"private": true,
"scripts": {
"autofix": "ultra -r autofix",
"start": "concurrently -k -p \"[{name}]\" -n \"API,Frontend\" -c \"cyan.bold,green.bold,blue.bold\" \"yarn start:api\" \"yarn start:frontend\"",
"start:api": "cd apps/api && yarn start",
"start:frontend": "cd apps/frontend && yarn start -p $PORT",
"dev": "concurrently -k -p \"[{name}]\" -n \"API,Frontend\" -c \"cyan.bold,green.bold,blue.bold\" \"yarn dev:api\" \"yarn dev:frontend\"",
"dev:api": "cd apps/api && yarn dev",
"dev:frontend": "cd apps/frontend && yarn dev",
"build": "cd apps/frontend && yarn build",
"postinstall": "patch-package",
"test": "ultra -r yarn test",
"testsuite": "ultra -r yarn testsuite",
"up": "ultra -r --root ncu -u --packageFile package.json -x @types/node",
"pub": "yarn lerna publish --no-private",
"client": "cd packages/client && yarn client"
},
"resolutions": {
"typescript": "^4.4.3"
},
"devDependencies": {
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@effect-ts/jest": "^0.29.0",
"@effect-ts/tracing-plugin": "^0.14.8",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.172",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-jest": "^27.1.1",
"babel-plugin-module-resolver": "^4.1.0",
"concurrently": "^6.2.1",
"core-js": "^3.17.3",
"esbuild": "^0.12.26",
"esbuild-node": "^0.4.0",
"esbuild-runner": "^2.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"fast-check": "^2.17.0",
"jest": "^27.1.1",
"lerna": "^4.0.0",
"madge": "^5.0.1",
"nodemon": "^2.0.12",
"npm-check-updates": "^11.8.5",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"tsconfig-paths": "^3.11.0",
"ttypescript": "^1.5.12",
"typescript": "^4.4.3",
"ultra-runner": "^3.10.5"
}
}