-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.15 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "polymesh-sdk-examples",
"version": "0.0.0",
"description": "Example project that demonstrate how to use Polymesh SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Polymath Studios Inc.",
"license": "ISC",
"scripts": {
"test": "jest --coverage --passWithNoTests",
"build:ts": "ttsc -b",
"build:docs": "typedoc src",
"commit": "npx git-cz",
"semantic-release": "semantic-release",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"run-example": "npx ts-node@8.2.0 -r tsconfig-paths/register -r dotenv/config",
"format": "cross-env prettier-eslint $PWD\"/src/**/*.{ts,tsx,js,jsx,json,css,md}\" --write",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@ovos-media/ts-transform-paths": "^1.7.18-1",
"@semantic-release/git": "^8.0.0",
"@types/bluebird": "^3.5.38",
"@types/jest": "29.5.4",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-semistandard": "17.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.6.4",
"lint-staged": "14.0.1",
"prettier": "2.8.8",
"prettier-eslint": "15.0.1",
"prettier-eslint-cli": "7.1.0",
"semantic-release": "^19.0.2",
"ts-jest": "^29.1.1",
"tsconfig-paths": "^3.9.0",
"ttypescript": "^1.5.15",
"typedoc": "^0.23.5",
"typescript": "4.6.2"
},
"dependencies": {
"@polymeshassociation/local-signing-manager": "^3.1.0",
"@polymeshassociation/polymesh-sdk": "27.3.0-alpha.1",
"bluebird": "^3.7.2",
"dotenv": "^16.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}