-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.57 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
{
"name": "@cuppazee/api-server",
"version": "0.0.1",
"main": "lib",
"license": "MPL-2.0",
"keywords": [
"munzee",
"cuppazee"
],
"repository": {
"type": "git",
"url": "https://github.com/CuppaZee/API.git"
},
"author": "CuppaZee",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"docker-build": "docker build . -t czapi",
"dev": "cross-env NODE_ENV=development ts-node-dev --respawn src/server.ts -- --enable-source-maps"
},
"dependencies": {
"@cuppazee/db": "^0.0.8",
"@cuppazee/utils": "^0.1.2",
"@prisma/client": "^3.4.2",
"@webkitty/geo-rev": "^1.1.1",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"exceljs": "^4.3.0",
"fastify": "^3.14.2",
"fastify-cors": "^6.0.1",
"fastify-formbody": "^5.2.0",
"fastify-multipart": "^5.2.1",
"fastify-static": "^4.0.1",
"geo-tz": "^7.0.1",
"glob": "^7.2.0",
"immer": "^9.0.12",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.1.2",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.1",
"pg": "^8.7.1",
"power-radix": "~2.5.6",
"rollbar": "^2.24.0",
"tslib": "^2.3.1",
"zipson": "^0.2.12"
},
"devDependencies": {
"@cuppazee/api": "^0.0.14",
"@types/cors": "^2.8.10",
"@types/glob": "^7.2.0",
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^14.17.32",
"@types/node-fetch": "^2.5.10",
"@types/pg": "^8.6.1",
"@types/power-radix": "~2.5.0",
"prisma": "^3.4.2",
"ts-node-dev": "^1.1.8",
"tsc-watch": "^4.2.9",
"typescript": "^4.5.0-beta"
}
}