-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.11 KB
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
{
"name": "supergym-api",
"version": "1.0.0",
"main": "src/index.ts",
"author": "Rafael Jordão",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node ./build/index.js",
"dev": "npx nodemon --exec ts-node --files src/index.ts",
"test": "jest"
},
"dependencies": {
"@prisma/client": "^4.13.0",
"@types/fs-extra": "^11.0.1",
"bcryptjs": "^2.4.3",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"jest-mock-extended": "2.0.4",
"jsonwebtoken": "^9.0.0",
"pg": "^8.10.0",
"prisma": "^4.13.0",
"puppeteer": "^20.0.0",
"reflect-metadata": "^0.1.13",
"typescript": "4.2.4"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.15.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1"
}
}