-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "dashy-server",
"version": "0.0.1",
"description": "Dashy.io Server",
"main": "app.js",
"scripts": {
"dev": "DEBUG=app,app:* nodemon --harmony ./bin/www",
"start": "DEBUG=app,app:* node --harmony ./bin/www",
"test": "DEBUG=app,app:* npm prune && npm shrinkwrap && mocha --harmony --reporter spec --timeout 10000 \"tests/**/*.tests.js\"",
"test-w": "NODE_ENV=test nodemon -x 'npm test'"
},
"repository": {
"type": "git",
"url": "https://github.com/dashy-io/dashy-server"
},
"author": "Marco Bettiolo <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dashy-io/dashy-server/issues"
},
"homepage": "https://github.com/dashy-io/dashy-server",
"dependencies": {
"body-parser": "^1.12.2",
"debug": "^2.1.3",
"eslint": "^0.18.0",
"express": "^4.12.3",
"memory-cache": "0.1.1",
"mongodb": "^1.4.35",
"node-uuid": "^1.4.3",
"nodemon": "^1.3.7",
"rand-token": "^0.2.1",
"request": "^2.54.0"
},
"devDependencies": {
"chai": "^2.2.0",
"chai-string": "^1.1.1",
"mocha": "^2.2.1",
"supertest": "^0.15.0"
}
}