-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "ts_boilerplate",
"version": "0.1.0",
"description": "Quick start for typescript projects",
"main": "./dist/index.js",
"author": "Extra <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node ./dist/index.js",
"build": "node ./node_modules/typescript/bin/tsc",
"prettier": "node ./node_modules/prettier/bin-prettier.js '**/*.{ts,tsx,json,md}' --trailing-comma es5 --ignore-path .gitignore --single-quote --arrow-parens always --write",
"lint": "./node_modules/tslint/bin/tslint src/**/*.ts{,x}",
"lint-fix": "./node_modules/tslint/bin/tslint src/**/*.ts{,x} --fix"
},
"devDependencies": {
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.2"
},
"lint-staged": {
"src/**/*.{ts}": [
"./node_modules/tslint/bin/tslint -c tslint.json --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier; git add --all; lint-staged"
}
},
"dependencies": {
"@types/ws": "^7.2.5",
"axios": "^0.19.2",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"electron-log": "^4.1.1",
"ora": "^4.0.4",
"turtlecoin-utils": "^2.0.1",
"ws": "^7.3.0"
}
}