-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.02 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
{
"name": "chainin-server",
"version": "1.0.0",
"description": "ChainIn 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": "Dann, Zheng Huy, Azad",
"license": "ISC",
"dependencies": {
"@tableland/sdk": "^5.1.1",
"@tableland/studio-cli": "^0.0.0-pre.7",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^5.7.2",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.6.5",
"path": "^0.12.7",
"sequelize": "^6.35.1",
"sequelize-cli": "^6.6.2",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.9.4",
"nodemon": "^3.0.1",
"typescript": "^5.3.2"
}
}