-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "ts-template",
"version": "0.1.0",
"description": "a template for typescript stuff",
"main": "dist/index.js",
"author": "Carter Himmel <fyko@sycer.dev>",
"license": "Apache-2.0",
"scripts": {
"build": "rimraf dist/* && tsc",
"build:ci": "tsc --noEmit --incremental false",
"dev": "ts-node-dev --debug ./src/index.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts"
},
"devDependencies": {
"@types/node": "16",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"dotenv": "^10.0.0",
"eslint": "^8.5.0",
"eslint-config-marine": "^9.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts",
"*.{json,yml,yaml}": "prettier --write"
},
"volta": {
"node": "16.13.1",
"npm": "7.6.0"
},
"packageManager": "yarn@3.1.1"
}