-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "2share-api",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "nodemon src/server.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules dotenv -e .env.test jest -i"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.14.0",
"@types/bcrypt": "^5.0.0",
"@types/jsonwebtoken": "^8.5.8",
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dayjs": "^1.11.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"react-player": "^2.10.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/joi": "^17.2.3",
"@types/node": "^17.0.33",
"@types/supertest": "^2.0.12",
"dotenv-cli": "^5.1.0",
"jest": "^28.1.0",
"nodemon": "^2.0.16",
"prisma": "^3.14.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}