-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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": "webproject",
"version": "0.1.0",
"description": "Web Project backend",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest --watchALL --verbose",
"testC": "jest --watchALL --verbose --coverage",
"testDeep": "jest --watchALL --verbose --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebProject26/backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/WebProject26/backend/issues"
},
"homepage": "https://github.com/WebProject26/backend#readme",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cool-ascii-faces": "~1.3.x",
"cors": "^2.8.5",
"ejs": "^2.3.1",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-promise-router": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"jest": "^27.3.1",
"supertest": "^6.1.6"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"debug",
"app.js"
]
}
}