-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 880 Bytes
/
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
{
"name": "curriculum-backend-server-side-validation-practice",
"version": "1.0.0",
"description": "Server-side validation with express-validator",
"main": "app.js",
"scripts": {
"test": "mocha --exit ./tests",
"start": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReCoded-Org/curriculum-backend-server-side-validation-practice.git"
},
"author": "Re:Coded",
"license": "ISC",
"bugs": {
"url": "https://github.com/ReCoded-Org/curriculum-backend-server-side-validation-practice/issues"
},
"homepage": "https://github.com/ReCoded-Org/curriculum-backend-server-side-validation-practice#readme",
"dependencies": {
"chai": "^4.3.4",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-validator": "^6.13.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"supertest": "^6.1.6"
}
}