-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
47
{
"name": "bobcat",
"version": "0.0.0",
"description": "MEAN experiment + d3.js",
"repository": "https://github.com/rorysedgwick/bobcat",
"license": "",
"author": "rorysedgwick",
"scripts": {
"test": "mocha test/**/**",
"watch-test": "mocha -w test/**/*.js",
"lint": "eslint **/*.js",
"start": "npm run build-watch & node api/server.js",
"build": "npm run lint & npm run browserify",
"build-watch": "watchify src/js/app.js -t babelify -o public/js/app.js",
"browserify": "browserify src/js/app.js -t babelify -o public/js/app.js"
},
"dependencies": {
"angular": "^1.4.7",
"angular-leaflet-directive": "^0.8.8",
"body-parser": "^1.14.1",
"browserify": "^11.2.0",
"coffee-script": "^1.10.0",
"connect": "^3.4.0",
"ejs": "^2.3.4",
"express": "^4.13.3",
"express.io": "^1.1.13",
"leaflet": "^0.7.5",
"leaflet.markercluster": "^0.4.0",
"mongodb": "^2.0.46",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.1.12",
"request": "^2.65.0",
"watchify": "^3.4.0",
"xml2js": "^0.4.13"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.10",
"babelify": "^6.4.0",
"eslint": "^1.1.0",
"karma": "^0.13.11",
"karma-chrome-launcher": "^0.2.1",
"mocha": "^2.3.3",
"node-mocks-http": "^1.4.4",
"nodemon": "^1.4.1"
}
}