-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "aoc-2015",
"version": "0.0.1",
"description": "Advent of Code 2015",
"author": {
"name": "Kenny R. Lienhard",
"email": "lienhard@medignition.com",
"url": "https://medignition.com"
},
"license": "UNLICENSED",
"private": true,
"main": "main.ts",
"scripts": {
"build": "copyfiles package.json dist && tsc",
"lint": "npx eslint 'src/**/*.ts'",
"check-types": "tsc",
"prettier": "prettier \"**/*.+(ts|js|json)\"",
"format": "yarn run prettier --write",
"check-format": "yarn run prettier --list-different",
"validate": "npm-run-all --parallel check-types check-format lint build",
"start": "NODE_PATH=./src ts-node ./src/main.ts",
"dev": "nodemon",
"test": "jest --config test/jest.config.ts",
"test:watch": "jest --config test/jest.config.ts --watchAll",
"test:coverage": "npm run test -- --coverage"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript"
]
},
"dependencies": {
"manhattan": "^1.0.0",
"pathfinding": "^0.4.18"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.2",
"@babel/preset-typescript": "^7.24.7",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^29.7.0",
"copyfiles": "^2.4.1",
"eslint": "^9.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.2.7",
"nodemon": "^3.1.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^7.13.1"
},
"packageManager": "yarn@4.3.1"
}