-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "lambdanotes-backend",
"version": "1.0.0",
"description": "Backend for lambda notes",
"main": "index.js",
"engines": {
"node": "12.16.x",
"npm": ">=6.0.1",
"yarn": ">=1.22.4"
},
"scripts": {
"test": "cross-env NODE_ENV=testing jest --watchAll --verbose --runInBand --detectOpenHandles",
"start": "nodemon server.js"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nedu/lambdanotes-backend.git"
},
"keywords": [],
"author": "Nedu Robert <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nedu/lambdanotes-backend/issues"
},
"homepage": "https://github.com/Nedu/lambdanotes-backend#readme",
"devDependencies": {
"cross-env": "^5.1.6",
"jest": "^23.0.1",
"nodemon": "^1.17.5",
"supertest": "^3.1.0"
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.4",
"express": "^4.16.3",
"faker": "^4.1.0",
"helmet": "^3.12.1",
"jsonwebtoken": "^8.2.1",
"mongoose": "^5.1.2",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
}
}