-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.45 KB
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": "todo-backend",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"dev": "ts-node-dev src/app.ts",
"clean": "rm -rf ./dist ./cache ./out",
"dist-clean": "npm run clean && rm -rf ./node_modules",
"build": "rm -rf ./dist && tsc && npm run copy-views && npm run build-contracts",
"build-contracts": "npx solcjs --bin --abi -o dist/contracts contracts/AddressList.sol && npm run copy-contract-json",
"copy-views": "cp -rf ./src/views ./dist/ && cp -rf ./public ./dist/",
"copy-contract-json": "cp -f dist/contracts/contracts_AddressList_sol_AddressList.abi dist/contracts/contracts_AddressList_sol_AddressList.abi.json",
"lint": "npx eslint src/",
"lint-fix": "npx eslint --fix src/"
},
"dependencies": {
"@auth/express": "^0.10.1",
"body-parser": "^1.20.2",
"cookie": "^1.0.2",
"cors": "^2.8.5",
"ejs": "^3.1.10",
"ethers": "^6.14.1",
"express": "^4.18.2",
"express-session": "^1.18.1",
"simple-siwe": "^0.1.4",
"solc": "^0.8.30"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/express-session": "^1.18.1",
"@types/node": "^20.3.1",
"eslint": "^9.27.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.0"
},
"type": "module",
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}