-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 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
{
"name": "api-server",
"version": "1.0.0",
"description": "API Server Template",
"main": "index.js",
"scripts": {
"test": "jest --verbose --coverage",
"start": "node index.js",
"lint": "eslint '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristopherKnightMerritt/api-server.git"
},
"author": "Chris Merritt",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChristopherKnightMerritt/api-server/issues"
},
"homepage": "https://github.com/ChristopherKnightMerritt/api-server#readme",
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"eslint": "^6.0.1",
"express": "^4.17.1",
"jest": "^24.8.0",
"jsonwebtoken": "^8.5.1",
"mongodb-memory-server": "^5.1.5",
"mongoose": "^5.6.0",
"mongoose-schema-jsonschema": "^1.2.1",
"morgan": "^1.9.1",
"supertest": "^4.0.2"
}
}