forked from sf-wdi-24/crud-api
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 742 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 742 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": "super-crud-api",
"version": "0.0.2",
"description": "Open CRUD API with a variety of resources",
"main": "server.js",
"scripts": {
"start": "node server.js",
"debug": "node-debug server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sf-wdi-labs/super-crud-api.git"
},
"author": "GA SF WDI",
"license": "ISC",
"bugs": {
"url": "https://github.com/sf-wdi-labs/super-crud-api/issues"
},
"dependencies": {
"body-parser": "^1.17.1",
"cors": "^2.8.3",
"ejs": "^2.5.6",
"express": "^4.15.2",
"mongoose": "^4.13.14"
},
"devDependencies": {
"node-inspector": "0.12.3"
},
"homepage": "https://github.com/sf-wdi-labs/super-crud-api#readme"
}