-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "typescript-express-firestore",
"version": "1.0.0",
"description": "An API REST created with Typescript and using Express and Firestore modules",
"main": "./build/index.js",
"scripts": {
"build": "tsc",
"start": "node",
"lint": "tslint --project tslint.json",
"build-watch": "tsc --watch",
"start-watch": "nodemon",
"test": "mocha --require ts-node/register tests/**/*.ts --timeout 20000",
"doc": "typedoc --out docs --mode file --name \"Typescript + Express + Firestore - API Rest\" --exclude tests/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcoshuck/typescript-express-firestore.git"
},
"keywords": [
"Typescript",
"Express",
"Firestore"
],
"author": "Marcos A. Huck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marcoshuck/typescript-express-firestore/issues"
},
"homepage": "https://github.com/marcoshuck/typescript-express-firestore#readme",
"devDependencies": {
"@firebase/app-types": "^0.3.2",
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typedoc": "^0.14.0",
"typescript": "^3.2.2"
},
"dependencies": {
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"firebase-admin": "^6.4.0",
"firebase-functions": "^2.1.0",
"pug": "^2.0.3"
}
}