This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
55 lines (55 loc) · 1.74 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
{
"name": "kitty-items",
"version": "1.0.0",
"description": "<p align=\"center\"><img width=\"400\" src=\"kitty-items-banner.png\" /></a> </p>",
"type": "module",
"dependencies": {
"chalk": "^5.0.0",
"chalk-animation": "^1.6.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"fs-jetpack": "^4.3.1",
"gradient-string": "^2.0.0",
"inquirer": "^8.2.0",
"ora": "^6.1.0",
"pm2": "^5.1.2",
"postgresql": "^0.0.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/yargs": "^16.0.1",
"cypress": "^10.3.1",
"dotenv-cli": "^5.1.0",
"kill-port-process": "^3.0.1",
"lerna": "^4.0.0",
"node-gyp": "^9.0.0",
"npm": "^8.5.5"
},
"scripts": {
"preinstall": "node .ki-scripts/version-check.js",
"dev:emulator": "npx cross-env CHAIN_ENV=emulator node .ki-scripts/startup.js",
"dev:testnet": "npx cross-env CHAIN_ENV=testnet node .ki-scripts/startup.js",
"update:emulator": "flow project deploy --update",
"update:testnet": "npx dotenv-cli -e .env.testnet -- flow project deploy --network=testnet -f flow.json -f flow.testnet.json --update",
"dev:reset": "cross-env node .ki-scripts/reset.js",
"postinstall": "npx lerna exec npm install",
"stop": "npx pm2 stop all",
"heroku-postbuild": "npx lerna exec npm run build",
"start": "node api/dist/index.js",
"start:worker": "node api/dist/index.js --worker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onflow/kitty-items.git"
},
"author": "",
"license": "Apache 2",
"bugs": {
"url": "https://github.com/onflow/kitty-items/issues"
},
"homepage": "https://github.com/onflow/kitty-items#readme",
"engines": {
"node": ">=16.0.0"
}
}