-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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": "imaginerio-search",
"version": "1.0.0",
"description": "Search API for imagineRio tools",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "npx nodemon index.js",
"start": "cross-env NODE_ENV=production node index.js",
"test": "cross-env NODE_ENV=test npx sequelize-cli db:migrate:undo:all && cross-env NODE_ENV=test yarn db:migrate && cross-env NODE_ENV=test yarn jest",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"db:job": "yarn db:migrate && node startup",
"db:migrate:reset": "npx sequelize-cli db:migrate:undo:all && yarn db:migrate && yarn db:seed"
},
"dependencies": {
"@turf/centroid": "^6.0.2",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"colorbrewer": "^1.5.1",
"cors": "^2.8.5",
"csv-parse": "^5.0.4",
"d3-array": "2",
"d3-scale": "3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"ora": "^5.4.0",
"pg": "^8.5.1",
"sequelize": "^6.3.5",
"uuid": "^8.3.2",
"wellknown": "^0.5.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.1.4",
"faker": "^5.5.3",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"prettier": "^2.2.0",
"prettier-eslint": "^12.0.0",
"rewire": "^5.0.0",
"supertest": "^6.1.3"
}
}