-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
34 lines (34 loc) · 979 Bytes
/
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
{
"name": "handlers-module",
"version": "1.0.0",
"description": "Common types between backend and frontend",
"main": "./lib/cjs/index.js",
"typings": "./lib/cjs/index.d.ts",
"scripts": {
"prebuild": "npm run lint && rm -rf ./lib",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"lint": "tslint --project tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "resul avan <[email protected]>",
"license": "ISC",
"devDependencies": {
"@types/pluralize": "0.0.29",
"prettier": "^2.2.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@types/express": "^4.17.9",
"@types/uuid": "^8.3.0",
"express": "^4.17.1",
"firebase": "^8.1.1",
"firebase-admin": "^9.4.1",
"http-status-codes": "^2.1.4",
"sitemap": "^6.3.3",
"types-module": "file:../types-module",
"uuid": "^8.3.1"
}
}