-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) · 2.47 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
81
82
83
84
85
86
87
88
89
{
"name": "gfw-areas",
"version": "1.8.0",
"description": "Area of Interest service for the RW API.",
"main": "index.js",
"scripts": {
"dev": "LOCAL_URL=http://mymachine:3005 NODE_PATH=app/src PORT=3005 node ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index.js",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js test",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc"
},
"keywords": [],
"license": "ISC",
"engines": {
"node": "~20.5"
},
"author": {
"name": "Vizzuality",
"email": "hello@vizzuality.com",
"url": "https://vizzuality.com/"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.3.6",
"chai-datetime": "^1.8.0",
"chai-http": "^4.3.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.30.0",
"grunt": "^1.5.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-simple-nyc": "^3.0.1",
"husky": "^3.0.9",
"lint-staged": "^9.4.3",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.0.0",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
},
"dependencies": {
"@mapbox/tilebelt": "^1.0.1",
"JSONStream": "^1.3.0",
"aws-sdk": "^2.1138.0",
"bunyan": "^1.8.15",
"config": "^1.21.0",
"jsonapi-serializer": "2.1.1",
"koa": "^2.13.4",
"koa-body": "^5.0.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"koa-send": "^5.0.1",
"koa-simple-healthcheck": "0.0.1",
"koa-validate": "^1.0.7",
"moment": "^2.29.3",
"mongoose": "^5.11.8",
"mongoose-history": "^0.8.0",
"mongoose-paginate": "^5.0.3",
"mustache": "^2.3.0",
"ngeohash": "^0.6.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"rimraf": "^2.6.1",
"rw-api-microservice-node": "^5.1.3",
"sleep": "^6.3.0",
"sparkpost": "^2.1.4",
"tmp": "0.0.31",
"uuid": "^3.0.1",
"zip-a-folder": "^1.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}