-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.98 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.98 KB
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
{
"name": "dk-api",
"version": "1.0.0",
"main": "src/server.ts",
"repository": "git@github.com:DigitalKampong/dk-api.git",
"license": "MIT",
"engines": {
"node": "^12"
},
"dependencies": {
"@fast-csv/format": "^4.3.5",
"@google-cloud/storage": "^5.7.0",
"@googlemaps/google-maps-services-js": "^3.1.14",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv-flow": "^3.2.0",
"express": "^4.17.1",
"fast-csv": "^4.3.6",
"inflection": "^1.12.0",
"jsonwebtoken": "^8.5.1",
"lodash.clonedeep": "^4.5.0",
"mime-types": "^2.1.27",
"multer": "^1.4.2",
"pg": "^8.4.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.8",
"@types/dotenv-flow": "^3.1.0",
"@types/express": "^4.17.8",
"@types/faker": "^5.1.4",
"@types/inflection": "^1.5.28",
"@types/jest": "^26.0.15",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/mime-types": "^2.1.0",
"@types/multer": "^1.4.5",
"@types/node": "^14.11.2",
"@types/rosie": "^0.0.38",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"copyfiles": "^2.4.1",
"faker": "^5.1.0",
"gts": "^3.0.1",
"jest": "^26.6.1",
"rosie": "^2.0.1",
"sequelize-cli": "^6.2.0",
"supertest": "^6.0.0",
"ts-jest": "^26.4.2",
"ts-node": "^9.0.0",
"ts-node-dev": "^1.0.0",
"typescript": "^4.0.3"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"build": "tsc && copyfiles src/db/seeds/* build",
"fix": "gts fix",
"dev": "ts-node-dev --respawn --transpile-only src/server.ts",
"sequelize-cli": "sequelize-cli",
"heroku-postbuild": "yarn build && PGSSLMODE=no-verify sequelize-cli db:migrate",
"gcp-build": "./deploy/gcp-build.sh",
"test": "jest",
"test:debug": "node --inspect_brk node_modules/.bin/jest --runInBand"
}
}