-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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
{
"name": "adventofcode",
"version": "22.12.1",
"description": "AdventOfCode Project",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "BSD-3-Clause",
"scripts": {
"buildprep": "tsc",
"start": "node dist/run.js",
"start-dev": "ts-node src/run.ts",
"lint": "eslint src"
},
"author": "Elschnagoo",
"dependencies": {
"@grandlinex/core": "^0.26.0"
},
"devDependencies": {
"@types/node": "16.11.17",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "8.28.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.0",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"typescript": "4.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Elschnagoo/adventofcode-2022.git"
}
}