-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 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
31
32
33
34
35
36
37
{
"name": "linkedlist-api",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stephencarrera/LinkedList-API.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/stephencarrera/LinkedList-API/issues"
},
"homepage": "https://github.com/stephencarrera/LinkedList-API#readme",
"dependencies": {
"bcrypt": "^2.0.0",
"body-parser": "^1.18.2",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"mongoose": "^4.13.7"
},
"devDependencies": {
"axios": "^0.17.1",
"chai": "^4.1.2",
"eslint": "^4.15.0",
"faker": "^4.1.0",
"locus": "^2.0.1",
"mocha": "^4.1.0",
"nodemon": "^1.14.11",
"supertest": "^3.0.0"
}
}