-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 929 Bytes
/
package.json
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
40
41
42
{
"name": "restful-node.js-example",
"version": "0.1.0",
"description": "A simple example of a node.js express service with db access",
"keywords": [
"Node.js",
"express",
"REST",
"JavaScript",
"MongoDB"
],
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"author": {
"name": "Maximilian Lackaw",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MaximilianLackaw/RESTful-Node.js-example"
},
"dependencies": {
"body-parser": "^1.15.1",
"express": "^4.13.4",
"mongoose": "^4.4.20"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-env": "^0.4.0",
"gulp-jscs": "^3.0.2",
"gulp-load-plugins": "^1.2.4",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.1.0",
"gulp-util": "^3.0.7",
"should": "^9.0.2",
"sinon": "^1.17.4",
"supertest": "^1.2.0"
}
}