This repository has been archived by the owner on Sep 15, 2022. It is now read-only.
generated from PolymeshAssociation/typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "typescript-repo-template",
"version": "0.0.0",
"description": "Template repository for typescript projects",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Polymath Studios Inc.",
"license": "ISC",
"scripts": {
"test": "jest --coverage",
"build:ts": "ttsc -b",
"build:docs": "typedoc src",
"commit": "npx git-cz",
"semantic-release": "semantic-release",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"format": "cross-env prettier-eslint $PWD\"/src/**/*.{ts,tsx,js,jsx,json,css,md}\" --write",
"start": "npx [email protected] -r tsconfig-paths/register src/index.ts"
},
"devDependencies": {
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"@semantic-release/git": "^8.0.0",
"@types/jest": "^23.3.10",
"@types/node": "^13.1.8",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@zerollup/ts-transform-paths": "^1.7.11",
"cross-env": "^7.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "^5.0.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.1.0",
"jest": "^24.1.0",
"lint-staged": "^8.1.5",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"prettier-eslint-cli": "^5.0.0",
"semantic-release": "^16.0.3",
"tsconfig-paths": "^3.9.0",
"ts-jest": "^24.3.0",
"ttypescript": "^1.5.10",
"typedoc": "^0.16.8",
"typescript": "3.7.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@polymathnetwork/polymesh-sdk": "1.0.0-beta.91",
"bignumber.js": "^9.0.0"
}
}