-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 796 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 796 Bytes
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
{
"name": "neo4j-express-realworld-example-app",
"version": "1.0.0",
"description": "conduit on node with neo4j",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"start:dev": "nodemon",
"test": "jest --config ./test/jest-e2e.json --watch --detectOpenHandles"
},
"author": "Adam Cowley <adam+git@neo4j.com>",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.6.1",
"neo4j-driver": "^4.1.1",
"passport": "^0.4.1",
"passport-anonymous": "^1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"jest": "^26.4.1",
"nodemon": "^2.0.4",
"supertest": "^4.0.2"
}
}