forked from kianenigma/polkadot-js-api-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "polkadot-js-api-ts-template",
"version": "0.1.0",
"description": "A template project to kickstart hacking on top of @polkadot/api, using typescript",
"main": "./build/index.js",
"scripts": {
"dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node ./src/index.ts",
"start": "./node_modules/.bin/ts-node ./src/index.ts",
"update": "././node_modules/.bin/ncu -u && yarn",
"lint": "eslint . --ext .ts --fix",
"build": "./node_modules/.bin/tsc --pretty --declarations"
},
"author": "@kianenigma",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/node": "^18.0.5",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.20.0",
"nodemon": "^2.0.19",
"npm-check-updates": "15.3.4",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"dependencies": {
"@polkadot/api": "8.13.1",
"bn.js": "^5.2.1",
"yargs": "^17.5.1"
}
}