-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1019 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1019 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
38
39
{
"name": "api-tutorial",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"start:watch": "nodemon server.js",
"seed": "node seed.js",
"drop": "mongo stranger-things --eval 'db.dropDatabase()'",
"db-load-all": "npm run drop && npm run seed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paigeegorry/api-tutorial.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/paigeegorry/api-tutorial/issues"
},
"homepage": "https://github.com/paigeegorry/api-tutorial#readme",
"devDependencies": {
"eslint": "^6.7.0",
"node-html-parser": "^1.1.16",
"nodemon": "^2.0.1",
"superagent": "^5.1.1"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ga-middleware": "^0.1.6",
"mongoose": "^5.9.2",
"url": "^0.11.0"
}
}