generated from mchirico/ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.27 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "starter",
"version": "1.0.0",
"description": "Typescript Starter Project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "ncc build src/index.ts",
"start": "node dist/index.js",
"lint": "eslint ./src --ext .ts,.tsx --fix && eslint ./test --ext .ts,.tsx --fix ",
"format": "prettier --write **/*.ts",
"test": "nyc --reporter=lcov mocha -r ts-node/register -t 30s 'test/*.test.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mchirico/ts-express.git"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"author": "Mike Chirico",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mchirico/ts-express"
},
"homepage": "https://github.com/mchirico/ts-express#readme",
"dependencies": {
"@google-cloud/bigquery": "^5.0.1",
"@google-cloud/datastore": "^6.1.0",
"@google-cloud/pubsub": "^2.2.0",
"@google-cloud/storage": "^5.1.2",
"@types/web-push": "^3.3.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"firebase-admin": "^9.0.0",
"lodash": "^4.17.19",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"rxjs": "^6.6.0",
"sqlite3": "^5.0.0",
"tmp": "^0.2.1",
"typed-rest-client": "^1.7.3",
"web-push": "^3.4.4"
},
"devDependencies": {
"@firebase/testing": "^0.20.6",
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/lodash": "^4.14.157",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@types/node-fetch": "^2.5.7",
"@types/request-promise": "^4.1.46",
"@types/sinon": "^9.0.4",
"@types/sqlite3": "^3.1.6",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"@zeit/ncc": "^0.22.x",
"chai": "^4.2.0",
"eslint": "^7.4.x",
"eslint-config-prettier": "^6.11.x",
"eslint-plugin-prettier": "^3.1.x",
"husky": "^4.2.5",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"sinon": "^9.0.2",
"ts-node": "^8.10.x",
"typescript": "^3.9.x"
},
"files": [
"dist/**/*"
]
}