-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "nodstarter",
"version": "1.0.21",
"description": "starter application for Node.js",
"main": "index.js",
"scripts": {
"start": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ahmadmoawad/nodstarter.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"keywords": [
"backend",
"starter",
"auth",
"mongodb",
"mongoose",
"jwt",
"nodemon",
"mocks",
"morgan",
"body-parser",
"method-override",
"logger",
"test",
"testing",
"runner"
],
"author": "Ahmad M.",
"license": "MIT",
"bugs": {
"url": "https://github.com/ahmadmoawad/nodstarter/issues"
},
"homepage": "https://github.com/ahmadmoawad/nodstarter#readme",
"dependencies": {
"bcrypt": ">=5.0.0",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.17.1",
"express-jwt": "^8.4.1",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.15",
"method-override": "^3.0.0",
"mongoose": "^5.9.3",
"morgan": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"supertest": "^4.0.2"
}
}