-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.3 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
{
"name": "celo-thing",
"version": "1.0.0",
"description": "code for DSRV X Celo meet-up",
"main": "index.js",
"author": "Mark",
"license": "MIT",
"scripts": {
"postinstall": "patch-package",
"prebuild": "rm -rf ./dist",
"build": "tsc --build",
"rebuild": "rm -rf ./dist && tsc --build",
"clean": "tsc --build --clean",
"start": "tsc --build && node ./dist/index.js",
"restart": "rm -rf ./dist && tsc --build && node ./dist/index.js",
"dev": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.1",
"@types/node": "17.0.23",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"tsc-watch": "^6.0.4",
"typescript": "4.6.3"
},
"dependencies": {
"@celo/contractkit": "^4.1.0",
"@celo/identity": "^4.1.0",
"dotenv": "^16.0.3",
"patch-package": "^7.0.0",
"web3": "^1.10.0"
}
}