-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 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
{
"name": "git-stations",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/TechBowl-japan/git-stations.git",
"author": "Àżu <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier --write {scripts,tests}/**/*.ts",
"lint": "eslint {scripts,tests}/**/*.ts --fix",
"fix": "yarn format && yarn lint",
"test": "vitest run",
"station04": "ts-node ./scripts/station04.ts",
"station06": "ts-node ./scripts/station06.ts",
"station07": "ts-node ./scripts/station07.ts",
"station09": "ts-node ./scripts/station09.ts"
},
"dependencies": {
"@types/node": "^20.14.8",
"simple-git": "^3.25.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "9.x",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.4.0",
"prettier": "^3.3.1",
"typescript-eslint": "^7.13.0",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}