-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.22 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
44
45
{
"name": "test-car-simulator",
"description": "CLI to simulate autonomous vehicle movements in a field and detect collisions",
"author": {
"email": "[email protected]",
"name": "Kevin Rowe"
},
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "tsx src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"build": "esbuild src/index.ts --bundle --platform=node --target=es2022 --format=esm --outfile=dist/index.js"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/eslintrc": "^3.0.2",
"@eslint/js": "^9.0.0",
"@types/jest": "^29.5.12",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"globals": "^15.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"typescript-eslint": "^7.5.0"
}
}