-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 927 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "create-nem-api",
"version": "0.3.0",
"description": "Boilerplate code for REST API with MongoDB, Node.js and Express",
"main": "app.js",
"type": "module",
"scripts": {
"test": "NODE_ENV=testing mocha --recursive --exit --timeout 10000",
"start": "node app.js"
},
"bin": {
"create-nem-api": "./bin/generate-app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KowalewskiPawel/NEM-API.git"
},
"keywords": [
"Node.js",
"Express",
"MongoDB",
"JWT",
"REST API"
],
"author": "Pawel Kowalewski",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"chai": "^4.3.4",
"create-nem-api": "^0.1.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^9.0.2",
"mongo-sanitize": "^1.1.0",
"mongoose": "^5.13.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.3"
}
}