-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "nodejs-api-example",
"version": "1.0.0",
"main": "src/api.js",
"repository": "",
"author": "",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "npm run lint && nodemon src/bin/www",
"lint": "eslint \"src/**/\" --fix",
"prettier": "prettier --write \"src/**\" ",
"test": "mocha --timeout 10000",
"start": "npm run lint && node src/api.js"
},
"dependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/express-handlebars": "^3.1.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-handlebars": "^5.3.0",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"luxon": "^1.26.0",
"mongoose": "^5.12.7",
"mongoose-paginate-async-await": "^1.0.8"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"supertest": "^6.1.6"
}
}