-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
42
43
44
45
46
47
48
49
{
"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": {
"run": "./node_modules/.bin/ts-node ./src/index.ts",
"run:dev": "./node_modules/.bin/nodemon --exec ./node_modules/.bin/ts-node ./src/index.ts",
"build": "npm run clean && ./node_modules/.bin/tsc --pretty --declaration",
"build:dev": "./node_modules/.bin/tsc --pretty --declaration --watch",
"clean": "./node_modules/.bin/rimraf build",
"update": "./node_modules/.bin/ncu -u && yarn",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"author": "@muddlebee",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@testing-library/jest-dom": "^5.16.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"babel-jest": "^29.5.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"npm-check-updates": "16.6.3",
"prettier": "^2.8.3",
"rimraf": "^4.1.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@polkadot/api": "^9.14.2",
"dotenv": "^16.0.3",
"yargs": "^17.6.2"
}
}