-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 973 Bytes
/
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
{
"name": "flash-link",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"test": "jest --watch --runInBand --detectOpenHandles",
"test:ci": "jest --runInBand --verbose",
"watch": "tsc -w",
"dev": "node --watch ./dist/main/index.js",
"build": "tsc",
"start": "node ./dist/main/index.js"
},
"keywords": [],
"author": "Rodrigo Meneses",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"jest": "^29.5.0",
"mongodb-memory-server": "^8.12.2",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongoose": "^7.0.4",
"swagger-ui-express": "^4.6.2",
"uuid": "^9.0.0",
"yaml": "^2.2.2"
}
}