-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "ts-express",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "NODE_ENV=development nodemon src/index.ts",
"test": "vitest",
"createTable": "ts-node ./setup/createTables.ts",
"start-dev": "NODE_ENV=development node dist/src/index.js",
"docker-push": "docker buildx build --platform linux/amd64,linux/arm64 -t willconrad/cerebellum:server --push ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-sqs": "^3.609.0",
"@socket.io/redis-streams-adapter": "^0.2.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"dynamoose": "^4.0.1",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"jose": "^5.6.3",
"socket.io": "^4.7.5",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.9",
"@types/uuid": "^10.0.0",
"nodemon": "^3.1.0",
"socket.io-client": "^4.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vitest": "^2.0.4"
}
}