-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
58 lines (58 loc) · 1.53 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
{
"name": "rowy-backend",
"description": "cloud run instance for running Rowy's backend functionality",
"version": "1.9.3",
"private": true,
"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;cpy --cwd=src --parents '**/*.json' ../build/",
"deploy": "./deploy.sh --project"
},
"engines": {
"node": "18"
},
"author": "Rowy Inc.",
"license": "Apache-2.0",
"dependencies": {
"@google-cloud/logging": "^10.3.1",
"@google-cloud/secret-manager": "^4.1.4",
"algoliasearch": "^4.10.5",
"axios": "^0.21.4",
"cpy-cli": "^2.0.0",
"express": "^4.17.1",
"file-type": "^16.5.3",
"firebase-admin": "^11.5.0",
"firebase-functions": "^4.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"sucrase": "^3.31.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "20.11.24",
"firebase-tools": "^11.25.2",
"google-auth-library": "^8.8.0",
"husky": "^4.3.8",
"js-beautify": "^1.13.0",
"mocha": "^9.0.0",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"pretty-quick": "^3.1.1",
"supertest": "^6.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.0",
"typescript": "^4.6.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}