-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.87 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.87 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
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": "lunaris",
"version": "1.0.1",
"description": "Cloud Gaming Platform - Monorepo",
"private": true,
"workspaces": [
"lambda",
"cdk",
"frontend"
],
"scripts": {
"dev:start": "npm run docker:build && npm run docker:start && sleep 3 && npm run db:create-tables",
"dev:stop": "npm run docker:stop",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:frontend": "eslint frontend",
"lint:frontend:fix": "eslint frontend --fix",
"lint:lambda": "eslint lambda",
"lint:lambda:fix": "eslint lambda --fix",
"lint:cdk": "eslint cdk",
"lint:cdk:fix": "eslint cdk --fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"prettier:frontend": "prettier frontend --check",
"prettier:frontend:fix": "prettier frontend --write",
"prettier:lambda": "prettier lambda --check",
"prettier:lambda:fix": "prettier lambda --write",
"prettier:cdk": "prettier cdk --check",
"prettier:cdk:fix": "prettier cdk --write",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up -d",
"docker:stop": "docker-compose down",
"docker:restart": "npm run docker:stop && npm run docker:start",
"docker:logs": "docker-compose logs -f",
"docker:test": "npm run docker:test:lambda",
"docker:test:lambda": "cd lambda && npm test",
"docker:clean": "docker-compose down -v && docker system prune -f",
"db:start": "docker-compose up -d dynamodb",
"db:stop": "docker-compose stop dynamodb",
"db:create-tables": "tsx scripts/init-dynamodb-tables.ts",
"db:reset": "npm run db:stop && docker-compose rm -f dynamodb && npm run db:start && sleep 2 && npm run db:create-tables",
"build:all": "npm run build --workspaces --if-present",
"test:all": "npm test --workspaces --if-present",
"install:all": "npm install --workspaces"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ubclaunchpad/lunaris"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.917.0",
"@eslint/js": "^9.39.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-awscdk": "^4.0.4",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"prettier": "^3.8.1",
"tsx": "^4.20.6",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@aws-sdk/client-cognito-identity-provider": "^3.940.0",
"aws-amplify": "^6.15.8",
"aws-cdk-lib": "^2.224.0",
"constructs": "^10.4.3"
}
}