-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.19 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": "universe-cloud-function",
"version": "1.0.0",
"description": "Cloud Function that queries NFTs and Orders from the Universe Database",
"main": "index.js",
"scripts": {
"clean": "rimraf \"cloudfn/*\"",
"build": "tsc",
"copy-package": "copyfiles package.json cloudfn",
"mocha": "mocha \"cloudfn/**/*.spec.js\"",
"gcfscript": "./gcf.sh",
"run-local-harness": "node cloudfn/local-harness.js",
"run-local-server": "node cloudfn/index.js",
"local": "run-s clean build run-local-harness",
"local:server": "run-s clean build run-local-server",
"test": "run-s clean build mocha",
"deploy": "run-s clean build copy-package gcfscript"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/express": "^4.11.0",
"@types/mocha": "^2.2.46",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.11.97",
"@types/node": "^17.0.25",
"chai": "^4.1.2",
"copyfiles": "^1.2.0",
"express": "^4.18.1",
"mocha": "^4.1.0",
"npm-run-all": "^4.1.2",
"rimraf": "^2.6.2",
"typescript": "^4.6.3"
},
"dependencies": {
"dotenv": "^16.0.0",
"ethers": "^5.6.4",
"mongoose": "^6.2.10",
"run-s": "^0.0.0"
}
}