-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.94 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
{
"name": "gygb-backend-node",
"version": "0.0.1",
"description": "Backend for Get Your GreenBack Tompkins services.",
"main": "src/app.ts",
"license": "Apache-2.0",
"scripts": {
"serve": "node dist/app.js",
"build": "yarn run build:ts",
"build:ts": "tsc",
"dev": "yarn run build:ts && yarn run serve",
"dev:test": "yarn run test -- --watchAll",
"test": "jest --detectOpenHandles --coverage --verbose",
"test:quiet": "jest --detectOpenHandles --coverage",
"test:nocov": "jest --detectOpenHandles --verbose",
"lint": "tsc --noEmit && eslint \"src/**/*.ts\" --quiet --fix",
"debug": "node --inspect dist/app.js",
"heroku-prebuild": "cp sample.npmrc .npmrc && sed -i \"s/<YOUR_AUTH_TOKEN>/${NPM_TOKEN}/g\" .npmrc"
},
"resolutions": {
"@firebase/app-types": "^0.6.1",
"@firebase/auth": "^0.14.9",
"@firebase/firestore": "^1.16.5",
"@firebase/firestore-types": "^1.12.0",
"@firebase/messaging": "^0.7.0",
"@firebase/util": "^0.3.1"
},
"devDependencies": {
"@get-your-greenback-tompkins/ts-mock-firebase": "^2.3.0",
"@types/antlr4": "^4.7.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/jest": "^26.0.10",
"@types/sanitize-html": "^1.20.2",
"@types/supertest": "^2.0.10",
"@types/uuid": "^7.0.3",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"concurrently": "^5.1.0",
"eslint": "^6.8.0",
"jest": "^26.4.2",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-jest": "^26.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^8.9.2",
"http-status-codes": "^1.4.0",
"moment": "^2.24.0",
"quill-delta": "^4.2.1",
"quill-delta-to-html": "^0.11.0",
"sanitize-html": "^1.21.1",
"uuid": "^7.0.3",
"validator": "^12.2.0"
}
}