-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 KB
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
47
48
49
50
51
52
53
54
55
56
{
"name": "trolley-tracker",
"version": "1.0.0",
"description": "Manage city trolley data",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "NODE_ENV=test mocha --reporter spec server/tests/*.spec.js",
"postinstall": "./node_modules/bower/bin/bower install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adam-s/trolley-tracker.git"
},
"author": "Adam S",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/adam-s/trolley-tracker/issues"
},
"homepage": "https://github.com/adam-s/trolley-tracker#readme",
"dependencies": {
"body-parser": "^1.15.0",
"bower": "^1.7.7",
"compression": "^1.6.1",
"express": "^4.13.4",
"lodash": "^4.6.1",
"method-override": "^2.3.5",
"mongoose": "^4.4.3",
"morgan": "^1.6.1"
},
"devDependencies": {
"chai": "^3.5.0",
"grunt": "^0.4.5",
"grunt-angular-templates": "^1.0.3",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-uglify": "^0.11.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-env": "^0.4.4",
"grunt-injector": "^0.6.1",
"grunt-karma": "^0.12.1",
"grunt-mocha-test": "^0.12.7",
"grunt-sass": "^1.1.0",
"grunt-usemin": "^3.1.1",
"grunt-wiredep": "^2.0.0",
"jasmine-core": "^2.4.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"mocha": "^2.4.5",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0"
}
}