-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "typescript-blockchain",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khaosdoctor/typescript-blockchain.git"
},
"keywords": [],
"author": "Lucas Santos <[email protected]> (https://lsantos.dev/)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/khaosdoctor/typescript-blockchain/issues"
},
"homepage": "https://github.com/khaosdoctor/typescript-blockchain#readme",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}