-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.5 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.5 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
{
"name": "typescript-template",
"version": "1.0.0",
"description": "Strict TypeScript template using yarn / Github Actions / CommonJS / TypeScript / Jest / ESLint / Prettier",
"type": "commonjs",
"main": "dist/index.js",
"scripts": {
"clean": "del-cli -f ./dist ./types",
"prepublish": "yarn build",
"prebuild": "yarn clean && yarn run lint",
"build": "yarn run tsc",
"lint": "yarn run eslint --fix --ext .ts src tests --cache src tests --cache-location node_modules/.cache/",
"test": "jest",
"dev:test": "jest --watch",
"dev:build": "tsc --watch",
"start": "node ./dist/index.js"
},
"author": "MathieuGermain",
"license": "MIT",
"keywords": [
"yarn",
"TypeScript",
"Template",
"CommonJS",
"Jest",
"ESLint",
"Prettier",
"Github Actions"
],
"homepage": "https://github.com/MathieuGermain/typescript-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MathieuGermain/typescript-template.git"
},
"bugs": {
"url": "https://github.com/MathieuGermain/typescript-template/issues"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"del-cli": "^5.0.0",
"eslint": "^8.23.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.2",
"prettier": "2.7.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}