-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 851 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
30
31
32
33
{
"name": "ts-project-template",
"type": "module",
"version": "0.0.0",
"description": "",
"keywords": [],
"author": {
"name": "Dev-CasperTheGhost",
"url": "https://www.casperiv.dev"
},
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,ts,tsx,yml,md}\" --ignore-path .gitignore",
"prettier:check": "prettier --check \"**/*.{js,jsx,json,ts,tsx,yml,md}\" --ignore-path .gitignore",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"@casper124578/eslint-config": "^6.0.0",
"eslint": "^8.39.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": false,
"printWidth": 120,
"tabWidth": 2
}
}