-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "commonTasks",
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"dependencies": {
"@kiltprotocol/sdk-js": "^0.35.2",
"@polkadot/util": "^12.4.2",
"@polkadot/util-crypto": "^12.4.2",
"dotenv": "^16.3.1",
"random-word": "^2.0.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@types/node": "^20.8.4",
"@types/random-word": "^2.0.2",
"@types/yargs": "^17.0.28",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"scripts": {
"newAccount": "ts-node source/newAccount.ts",
"newIdentity": "ts-node source/newIdentity.ts",
"newSporranIdentity": "ts-node source/newSporranIdentity.ts",
"cTypeWholesale": "ts-node source/cType/orderBatchOfCTypes.ts",
"translate": "ts-node source/did/translate.ts",
"try": "yarn ts-node source/tryStuff.ts",
"lint": "eslint --ext .js,.ts --config ./.eslintrc.json \"source/**/*.ts\"",
"fix": "eslint --ext .js,.ts --config ./.eslintrc.json --fix \"source/**/*.ts\""
}
}