-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.43 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
46
{
"name": "@mastondzn/advent-of-code",
"version": "0.0.0",
"private": true,
"license": "GPL-3.0-or-later",
"author": {
"name": "mastondzn",
"url": "https://github.com/mastondzn"
},
"scripts": {
"start": "tsx ./src/index.ts",
"dev": "tsx watch ./src/index.ts",
"scaffold": "tsx ./src/scaffold.ts",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,mjs,cjs,yml,yaml}\"",
"format:check": "prettier -c \"**/*.{ts,tsx,md,json,js,mjs,cjs,yml,yaml}\"",
"lint": "eslint ./src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"dedent": "^1.5.1",
"fs-extra": "^11.1.1",
"ramda": "^0.29.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/fs-extra": "^11.0.3",
"@types/node": "20",
"@types/ramda": "^0.29.7",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-define-config": "^1.24.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unicorn": "^49.0.0",
"prettier": "latest",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=20"
}
}