forked from krzkaczor/ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1023 Bytes
/
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
{
"name": "ts-boilerplate",
"version": "0.0.1",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"start": "ts-node ./src/index.ts",
"build": "rm -rf ./lib && tsc",
"format": "prettier --list-different '**/*.{ts,json,md, gql}'",
"format:fix": "prettier --write '**/*.{ts,json,md,gql}'",
"tslint": "tslint -p ./tsconfig.json -e 'node_modules/**/*' -e '**/node_modules/**/*' '**/*.ts'",
"tslint:fix": "tslint --fix --format stylish -p ./tsconfig.json -e 'node_modules/**/*' -e '**/node_modules/**/*' '**/*.ts'",
"tsc": "tsc --noEmit",
"lint": "yarn format && yarn tslint && yarn tsc",
"lint:fix": "yarn format:fix && yarn tslint:fix && yarn tsc",
"test": "yarn lint",
"test:fix": "yarn lint:fix"
},
"devDependencies": {
"@types/node": "^10.12.18",
"prettier": "^1.15.3",
"ts-essentials": "^1.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"tslint-language-service": "^0.9.9",
"typescript": "^3.2.2",
"typestrict": "^1.0.2"
}
}