-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "kitty-items-api",
"version": "0.0.1",
"main": "index.js",
"scripts": {
"dev": "tsnd src/index.ts --respawn --dev",
"testnet": "tsnd --respawn src/index.ts --dev",
"start:worker": "node dist/index.js --worker",
"start": "node dist/index.js",
"build": "tsc",
"format": "prettier \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "npm run format -- -c",
"format:write": "npm run format -- --write",
"migrate:make": "knex migrate:make -x ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@onflow/fcl": "0.0.73",
"@onflow/types": "0.0.5",
"@types/cors": "^2.8.9",
"@types/express": "^4.17.9",
"@types/yargs": "^16.0.1",
"api": "^3.4.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"dotenv-expand": "^5.1.0",
"elliptic": "^6.5.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.8.0",
"knex": "^0.95.6",
"object-hash": "^2.1.1",
"objection": "^3.0.0",
"pg": "^8.5.1",
"sha3": "^2.1.3",
"sqlite3": "^5.0.2",
"typescript": "^4.1.2",
"web": "0.0.2",
"yargs": "^17.0.1"
},
"devDependencies": {
"ts-node-dev": "^1.1.1"
},
"engines": {
"node": "14.x"
}
}