-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.01 KB
/
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
{
"name": "my-api",
"description": "Api Seed Project",
"version": "0.0.1",
"private": true,
"author": "Simon Townsend <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Unified/api.git"
},
"main": "./main.js",
"dependencies": {
"lodash": "~2.4.1",
"underscore.string": "~2.3.3",
"async": "~0.2.9",
"connect-redis": "~1.4.6",
"express": "~3.4.6",
"mongodb": "~1.3.19",
"pg": "~2.8.3",
"inflection": "~1.3.2",
"express-resource-plus": "~0.1.1",
"bunyan": "~0.22.1",
"sequelize": "https://github.com/stowns/sequelize/tarball/master"
},
"engines": {
"node": ">=0.10.22"
},
"devDependencies": {
"supertest": "~0.8.2",
"chai": "~1.8.1",
"mocha": "~1.15.1",
"grunt-contrib-watch": "^0.6.1",
"grunt": "^0.4.5",
"grunt-apidoc": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0"
},
"scripts": {
"start": "axle node main.js",
"test": "NODE_ENV=test mocha --timeout 5000 --reporter spec --ui bdd"
}
}