-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.84 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
{
"name": "virtual-lab-core",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": "18"
},
"scripts": {
"postinstall": "npm run install:client && npm run install:docs",
"install:client": "npm ci --prefix packages/client",
"install:docs": "npm ci --prefix packages/docs",
"dev": "AWS_PROFILE=virtual-lab sst dev",
"build": "sst build",
"deploy": "sst deploy",
"remove": "AWS_PROFILE=virtual-lab sst remove",
"typecheck": "tsc --noEmit && npm run typecheck --ws --if-present",
"lint": "NODE_OPTIONS=--max-old-space-size=4096 eslint . --report-unused-disable-directives",
"test": "jest",
"format": "prettier --write .",
"dev:check": "npm run typecheck && npm run lint && npm run test && npm run format"
},
"dependencies": {
"aws-cdk-lib": "2.142.1",
"constructs": "10.3.0",
"lodash": "^4.17.21",
"openapi3-ts": "^4.3.2",
"sst": "2.43.0"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/aws-lambda": "^8.10.138",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "18.x.x",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "^29.7.0",
"mongodb": "^6.7.0",
"mongodb-memory-server": "^9.3.0",
"prettier": "^3.3.1",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "<5.4.0",
"zod": "^3.23.8"
},
"workspaces": [
"packages/*[!client, !docs]*"
]
}