-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "obboy_express_backend",
"version": "1.0.0",
"description": "An Express App For Obboy.org",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index",
"dev": "nodemon index",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/obboy/obboy_express_backend.git"
},
"keywords": [
"expressjs",
"nodejs",
"obboy",
"mongo"
],
"author": "Obboy",
"license": "MIT",
"bugs": {
"url": "https://github.com/obboy/obboy_express_backend/issues"
},
"homepage": "https://github.com/obboy/obboy_express_backend#readme",
"prisma": {
"schema": "datalayer/prisma/schema.prisma"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"@prisma/client": "^3.11.0",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.4.1"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prisma": "^3.11.0"
}
}