-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "server",
"version": "1.0.0",
"description": "Backend server for The Ratatouille Moment",
"main": "src/index.ts",
"scripts": {
"dev": "npx tsc-watch --onSuccess \"node ./dist/index.js\"",
"start": "node dist/index.js",
"test": "jest",
"build": "tsc",
"seed-db": "npm run build && node dist/utils/seedDatabase.js",
"set-config": "npm run build && node dist/utils/setDBConfig.js",
"ci-install": "npm ci"
},
"author": "",
"license": "ISC",
"dependencies": {
"@codegenie/serverless-express": "^4.13.0",
"@octokit/core": "^5.2.0",
"@stadiamaps/api": "^1.0.9",
"aws-sdk": "^2.1517.0",
"axios": "^1.6.2",
"connect-mongo": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"form-data": "^4.0.0",
"mongoose": "^8.0.0",
"multer": "^1.4.5-lts.1",
"multer-s3": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"sharp": "^0.33.0"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.18",
"@types/express-session": "^1.17.10",
"@types/jest": "^29.5.5",
"@types/morgan": "^1.9.7",
"@types/multer": "^1.4.11",
"@types/multer-s3": "^3.0.3",
"@types/node": "^20.7.0",
"@types/passport": "^1.0.16",
"@types/passport-google-oauth20": "^2.0.14",
"@types/supertest": "^2.0.15",
"@types/yargs": "^17.0.29",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.0.0",
"morgan": "^1.10.0",
"nock": "^13.4.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsc-watch": "^6.0.4",
"typescript": "^5.2.2"
}
}