-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 807 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 807 Bytes
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": "interview-example",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint --max-warnings 0 --concurrency auto",
"format": "prettier --cache --check '**/*.{ts,tsx,js,html,css,json,md,yml}'",
"tsc": "tsl",
"check": "bun lint && bun format && bun tsc"
},
"prettier": {
"objectWrap": "collapse",
"experimentalOperatorPosition": "start",
"experimentalTernaries": true,
"plugins": [
"@arnaud-barre/prettier-plugin-sort-imports"
]
},
"dependencies": {},
"devDependencies": {
"@arnaud-barre/eslint-config": "^7.1.0",
"@arnaud-barre/prettier-plugin-sort-imports": "^0.2.4",
"@arnaud-barre/tsl-config": "^0.1.5",
"@types/node": "^22.19.17",
"prettier": "^3.8.1",
"tsl": "^1.0.30",
"typescript": "~6.0"
}
}