-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 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
{
"name": "nodejs-ts-template",
"version": "0.1.0",
"description": "Simple starter template for ExpressJs and TypeScript",
"author": "",
"license": "",
"scripts": {
"start": "npm run build && node dist/index.js",
"dev": "nodemon",
"build": "tsc",
"format": "prettier --write 'src/**/*ts'",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"devDependencies": {
"@polkadot/types": "^7.7.1",
"@types/dotenv": "^8.2.0",
"@types/node": "14.17.19",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"nodemon": "^2.0.13",
"prettier": "2.4.1",
"ts-node": "^10.2.1",
"typescript": "4.4.3"
},
"dependencies": {
"@polkadot/api": "^7.7.1",
"@polkadot/util": "^8.3.3",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"bn.js": "^5.2.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.4",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"web3": "^1.7.0"
}
}