generated from ijsKoud/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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": "adventofcode",
"version": "1.0.0",
"description": "Repository for the Advent Of Code challenges 🧩",
"author": "ijsKoud <github@ijskoud.dev>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"homepage": "https://github.com/ijsKoud/adventofcode",
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"start:dev": "nodemon ./dist",
"start": "node ./dist",
"lint": "eslint src",
"postinstall": "is-ci || husky install"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.3",
"@sapphire/ts-config": "^5.0.0",
"@snowcrystals/prettier-config": "^1.0.0",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"typescript": "5.3.3"
},
"dependencies": {
"colorette": "^2.0.20",
"dot-prop": "^9.0.0",
"lodash": "^4.17.21"
},
"engines": {
"node": ">= v18.16.0"
},
"packageManager": "yarn@4.2.1"
}