-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.01 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
{
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^9.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"knex": "^3.1.0",
"pg": "^8.6.0"
},
"name": "SRE-Bootcamp-Web-Server",
"version": "1.0.0",
"description": "My first backend repo",
"main": "index.js",
"devDependencies": {
"@eslint/js": "^9.4.0",
"cross-env": "^7.0.3",
"eslint": "^9.4.0",
"globals": "^15.4.0",
"jest": "^29.7.0",
"nodemon": "^2.0.7",
"supertest": "^7.0.0"
},
"scripts": {
"start": "nodemon ./index.js",
"test": "jest --testTimeout=1000",
"lint": "eslint .",
"lint:fix" : "eslint fix"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rohit1101/SRE-Bootcamp-Web-Server.git"
},
"keywords": [
"Node",
"express",
"postgresql",
"knex",
"jest"
],
"author": "Rohit",
"license": "ISC"
}