-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.64 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
{
"name": "proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_PATH=app/src node ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js e2eTest",
"start": "NODE_PATH=app/src node app/index.js",
"coverage": "NODE_PATH=app/src node ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"prepare": "husky install"
},
"keywords": [],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "https://vizzuality.com/"
},
"license": "MIT",
"engines": {
"node": "~20.4"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-datetime": "^1.8.0",
"chai-http": "^4.4.0",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-react": "^7.33.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"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": "^8.0.3",
"lint-staged": "^13.2.3",
"load-grunt-tasks": "^5.1.0",
"mocha": "^10.2.0",
"nock": "^13.3.2",
"nyc": "^15.1.0"
},
"dependencies": {
"bunyan": "^1.8.15",
"config": "^3.3.9",
"rw-api-microservice-node": "^5.1.3",
"jsonapi-serializer": "2.1.1",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"koa-mount": "^4.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^12.0.0",
"koa-simple-healthcheck": "^0.0.1",
"request": "^2.88.2"
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}