-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "zuko-server",
"version": "1.1.0",
"description": "Zuko backend server to query on-chain tables from Tableland.",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "tsc && nodemon dist/index.js",
"reinstall": "rm -rf dist && rm -rf node_modules && rm package-lock.json && npm i",
"build": "tsc"
},
"author": "Dan Wee, Johanna Fransson, Thomas Humphreys",
"license": "ISC",
"dependencies": {
"@sismo-core/sismo-connect-server": "^0.0.23",
"@tableland/sdk": "7.2.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ethers": "^6",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"mysql2": "^2.3.0",
"path": "^0.12.7",
"sequelize": "^6.33.0",
"sequelize-cli": "^6.6.1",
"ws": "^8.14.2"
},
"devDependencies": {
"@tableland/cli": "^7.3.1",
"@types/cors": "2.8.14",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"nodemon": "^2.0.22",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=18.0.0"
}
}