-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.07 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "contour",
"version": "0.9.0",
"description": "FCC Contour API - Node.js",
"main": "app.js",
"scripts": {
"start": "npm install && node app.js",
"test": "istanbul cover --hook-run-in-context ./node_modules/mocha/bin/_mocha ./test/**/test-*.js --recursive --exit",
"dev": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FCC/fcc-contour-node"
},
"keywords": [
"fcc",
"contour",
"API",
"node"
],
"author": "FCC",
"license": "",
"bugs": {
"url": "https://github.com/FCC/fcc-contour-node"
},
"homepage": "https://github.com/FCC/fcc-contour-node",
"dependencies": {
"async": "^2.6.3",
"aws-sdk": "^2.653.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dms-conversion": "3.0.0",
"dotenv": "^2.0.0",
"express": "^4.17.1",
"fast-isnumeric": "^1.1.3",
"file-stream-rotator": "^0.2.1",
"geojson": "0.3.0",
"handlebars": "^4.7.7",
"helmet": "^3.22.0",
"html-entities": "^1.2.0",
"http": "0.0.0",
"https": "^1.0.0",
"is-integer": "^1.0.7",
"istanbul": "^0.4.5",
"mathjs": "^7.5.1",
"memcached": "^2.2.2",
"morgan": "^1.10.0",
"pg-monitor": "^1.4.0",
"pg-promise": "^8.5.2",
"proj4": "^2.6.1",
"request": "^2.88.2",
"round-to": "^2.0.0",
"uuid": "^2.0.3"
},
"devDependencies": {
"bootstrap": "^3.3.7",
"chai": "^4.2.0",
"font-awesome": "^4.7.0",
"grunt": "^1.3.0",
"grunt-autoprefixer": "^3.0.4",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.3.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-postcss": "^0.9.0",
"grunt-string-replace": "^1.3.1",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^3.5.2",
"mocha": "^7.1.1",
"nodemon": "^2.0.4",
"supertest": "^3.4.2",
"time-grunt": "^1.4.0"
}
}