-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "connect-service",
"description": "example of connect-service server with cloud run",
"version": "1.0.0",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon",
"test": "mocha test/index.test.js --exit",
"system-test": "NAME=Cloud mocha test/system.test.js --timeout=180000",
"lint": "eslint '**/*.js'",
"fix": "eslint --fix '**/*.js'",
"build": "tsc",
"deploy": "yarn build; ./deploy.sh --project"
},
"engines": {
"node": ">= 13.0.0"
},
"author": "ROWY LLC",
"license": "Apache-2.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1"
},
"devDependencies": {
"@types/async-redis": "^1.1.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.26.7",
"@types/node": "^16.6.1",
"google-auth-library": "^7.0.0",
"got": "^11.0.0",
"mocha": "^9.0.0",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"supertest": "^6.0.0",
"ts-node": "^10.2.0",
"typescript": "^4.3.5"
}
}