-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1012 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
30
31
32
33
{
"name": "programmers-js-coding-test-study",
"private": true,
"type": "module",
"packageManager": "pnpm@11.17.0+sha512.cca3cea332ad254bb84145f966d19f4879615210346fc92c79a047f23a0d7b3cca3c3792f0076ba1f1831d277efbcf0a9119b31a9a60eca7fb3d6231f331ef72",
"engines": {
"node": ">=16.17.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"@vitest/eslint-plugin": "^1.6.24",
"cross-env": "^10.1.0",
"eslint": "^10.8.0",
"globals": "^17.7.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "vitest",
"format": "prettier --write \"./**/*.{js,ts,json,yml}\"",
"ts-build": "tsc",
"ts-clean": "rimraf dist",
"ts-watch": "pnpm ts-clean && tsc --watch",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint \"src/**/*.{js,ts}\" --fix"
}
}