-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "docker",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"dependencies": {
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"cluster": "^0.7.7",
"express": "^4.16.4",
"express-fileupload": "^1.1.1-alpha.2",
"firebase-admin": "^7.0.0",
"multer": "^1.4.1",
"serverless-http": "^1.9.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mocha": "^5.2.6",
"@types/node": "^11.9.4",
"@types/uuid": "^3.4.4",
"grpc": "^1.18.0",
"mocha": "^6.0.2",
"mock-cloud-firestore": "^0.9.2",
"serverless-offline": "^4.9.3",
"ts-node": "^8.0.3",
"tslint": "^5.12.1",
"typescript": "^3.3.3333"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "npx tslint -c tslint.json -p tsconfig.json --fix",
"build": "tsc",
"prestart": "npm run build",
"start": "node .",
"test-mocha": "npx mocha -r ts-node/register app_test/*.spec.ts",
"run": "set NODE_ENV=test && npm run build && npx mocha -r ts-node/register app_test/*.spec.ts && tsc && node ."
},
"keywords": [],
"author": "",
"license": "ISC"
}