-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 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
{
"name": "rest-api",
"version": "1.0.0",
"description": "a RESTful API using Node.js, Express, and MongoDB",
"main": "app.js",
"scripts": {
"test": "nyc mocha src/v1/test --timeout 30000 --report --exit",
"start": "nodemon app.js",
"lint": "npx eslint **/*.js --ignore-pattern node_modules/",
"fix-lint": "npx eslint **/*.js --fix --ignore-pattern node_modules/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lquyet/rest-api.git"
},
"author": "Le Quyet",
"license": "ISC",
"bugs": {
"url": "https://github.com/lquyet/rest-api/issues"
},
"homepage": "https://github.com/lquyet/rest-api#readme",
"dependencies": {
"ajv": "^8.11.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.2"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.22.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.19",
"nyc": "^15.1.0"
}
}