-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "labs-layers-api",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/NYCPlanning/labs-layers-api.git",
"author": "NYC Planning <[email protected]>",
"license": "MIT",
"dependencies": {
"@koa/cors": "2",
"@sentry/node": "^6.18.2",
"@sentry/tracing": "^6.18.2",
"array-unique": "^0.3.2",
"deepmerge": "2.1.1",
"dotenv": "^16.0.0",
"joi": "13.5.2",
"jsonapi-serializer": "3.5.6",
"koa": "^2.5.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"load-json-file": "^5.0.0",
"nock": "^13.3.1",
"node-fetch": "^2.2.0",
"nodemon": "^1.18.4",
"rsvp": "^4.8.3"
},
"devDependencies": {
"chai": "^4.3.7",
"chai-http": "^4.3.0",
"chai-things": "^0.2.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-ember": "^5.2.0",
"eslint-plugin-import": "^2.12.0",
"glob": "^7.1.2",
"mocha": "^5.2.0"
},
"scripts": {
"postinstall": "npm run create-sprite-svgs",
"start": "node app.js",
"dev": "nodemon --inspect app.js",
"test": "PORT=3001 NODE_ENV=test node ./node_modules/mocha/bin/mocha ./test/**/*.js --exit",
"watch-tests": "nodemon --exec 'npm run test || true'",
"create-sprite-svgs": "node ./assets/sprite/create-sprite-svgs.js",
"migrate-meta": "node ./tasks/migrate-meta-from-layer-group-to-source.js"
},
"engines": {
"node": "^18"
}
}