-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "code-challenge-squid-game",
"version": "0.0.1",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"openapi": "swagger-jsdoc -d openapi-defs.json -o openapi.json 'src/routes/*.ts'",
"dev": "nodemon node_modules/.bin/ts-node --ext \"ts,js,mjs,json\" src/server.ts",
"start": "ts-node src/server.ts",
"start-prod": "node dist/src/server",
"test": "jest --coverage"
},
"dependencies": {
"@google-cloud/logging-winston": "^4.1.1",
"axios": "^0.21.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"morgan": "^1.10.0",
"pg": "^8.6.0",
"redis": "^3.1.2",
"sequelize": "^6.6.2",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/faker": "^5.5.9",
"@types/jest": "^27.0.0",
"@types/morgan": "^1.9.3",
"@types/node": "^15.12.3",
"@types/pg": "^8.6.1",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.2",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"eslint": "^7.28.0",
"faker": "^5.5.3",
"jest": "^27.0.0",
"jest-cli": "^27.0.6",
"nodemon": "^2.0.12",
"openapi-types": "^9.0.3",
"supertest": "^6.1.4",
"swagger-jsdoc": "^6.1.0",
"ts-jest": "^27.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.3.4",
"uuid": "^8.3.2"
}
}