-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 2.44 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
{
"name": "airbotics",
"version": "0.1.0",
"description": "Airbotics is an open-source software deployment platform for robotics.",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"start": "nodemon --config ./nodemon.json src/index.ts",
"studio": "npx prisma studio --schema ./src/prisma/schema.prisma",
"lint": "eslint .",
"build": "tsc && tsc-alias",
"generate": "npx prisma generate --schema ./src/prisma/schema.prisma",
"helper": "npx ts-node ./scripts/dev-helper.ts",
"test": "jest -i --detectOpenHandles --coverage"
},
"dependencies": {
"@aws-sdk/client-acm-pca": "^3.254.0",
"@aws-sdk/client-s3": "^3.213.0",
"@aws-sdk/client-secrets-manager": "^3.250.0",
"@joi/date": "^2.1.0",
"@ory/client": "^1.1.4",
"@prisma/client": "^4.6.1",
"archiver": "^5.3.1",
"axios": "^1.2.0",
"canonicalize": "^1.0.8",
"cors": "^2.8.5",
"dayjs": "^1.11.6",
"dotenv": "^16.0.3",
"express": "^4.17.3",
"express-status-monitor": "^1.3.4",
"helmet": "^6.0.0",
"hpp": "^0.2.3",
"http": "0.0.1-security",
"joi": "^17.7.0",
"node-forge": "^1.3.1",
"node-schedule": "^2.1.0",
"prisma": "^4.6.1",
"random-word-slugs": "^0.1.6",
"readline-sync": "^1.4.10",
"tsc": "^2.0.4",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@aws-sdk/types": "^3.226.0",
"@types/archiver": "^5.3.1",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.13",
"@types/hpp": "^0.2.2",
"@types/jest": "^29.2.3",
"@types/joi": "^17.2.3",
"@types/node": "^18.8.1",
"@types/node-forge": "^1.3.1",
"@types/node-schedule": "^2.1.0",
"@types/readline-sync": "^1.4.4",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.0.1",
"eslint-config-google": "^0.14.0",
"install": "^0.13.0",
"jest": "^29.3.1",
"jest-mock-extended": "^3.0.1",
"nodemon": "^2.0.13",
"supertest": "^6.3.3",
"ts-jest": "^29.0.3",
"ts-node": "^10.3.0",
"tsc-alias": "^1.8.2",
"tsconfig-paths": "^4.1.1",
"typescript": "^4.9.3"
}
}