-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.26 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
42
43
44
45
46
{
"name": "farm-budgets-app",
"version": "1.0.1",
"description": "App for viewing farm budget data",
"author": "[email protected]",
"main": "server.js",
"scripts": {
"init-tools": "sudo npm install -g bower",
"init-dev": "npm install && bower install",
"init-prod": "npm install --production",
"dev": "node server --dev",
"docker": "node server --docker",
"watch": "grunt browserify:watch",
"test": "grunt test",
"build": "grunt build",
"all": "npm run build && npm run test"
},
"dependencies": {
"async": "^1.4.2",
"cors": "^2.7.1",
"deep-diff": "^0.3.3",
"express": "^4.12.2",
"express-auth": "ucd-cws/express-auth",
"extend": "^3.0.0",
"farm-budgets-sdk": "0.0.12",
"kraken-js": "^2.1.0",
"minimist": "^1.2.0",
"mongo-object-history": "0.0.1",
"mongodb": "^2.1.4",
"node-uuid": "^1.4.3",
"ucum.js": "0.0.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-config-dir": "^0.3.2",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-copy-to": "0.0.10",
"grunt-filerev": "^2.3.1",
"grunt-mocha-cli": "^1.13.1",
"grunt-vulcanize": "^1.0.0",
"mocha": "^1.18.0",
"supertest": "^0.9.0"
}
}