-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 905 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
{
"name": "node-typescript",
"version": "1.0.0",
"description": "This is a generic template for node + typescript projects. It bootstraps a template project with [some popular packages](#Configuration-Files) and [npm script commands](#NPM-Scripts) pre-configured.",
"main": "dist/src",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha -- \"tests/**/*.test.ts\"",
"test:gcp": "ENV=dev INSTANCE_ID=questionseen-test PROJECT_ID=lotum-quizplanet npm run test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.25",
"@types/sinon": "^9.0.4",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"source-map-support": "^0.5.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"@google-cloud/bigtable": "^3.0.1"
}
}