forked from Untapped-Island/rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.04 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
{
"name": "rest-api",
"version": "1.0.0",
"description": "<!-- Enter a description for the repository -->",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "NODE_ENV=development nodemon index.js",
"watch": "NODE_ENV=development nodemon index.js",
"test:watch": "NODE_ENV=test jest --watchAll",
"test": "NODE_ENV=test jest --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Untapped-Island/rest-api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Untapped-Island/rest-api/issues"
},
"homepage": "https://github.com/Untapped-Island/rest-api#readme",
"dependencies": {
"prisma": "^4.5.0",
"@prisma/client": "^4.5.0",
"base-64": "^1.0.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.20"
},
"devDependencies": {
"jest": "^27.5.1",
"supertest": "^6.3.0"
}
}