-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 891 Bytes
/
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
{
"workspaces": [
"years/*",
"utilities",
"visualizer"
],
"private": true,
"name": "adventofcode",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"start": "yarn workspace @spenserj-aoc/$0 start $1",
"test": "yarn jest"
},
"author": "Spenser Jones <hello@spenserj.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "16.11.10",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"eslint": "8.3.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "16.0.0",
"eslint-import-resolver-node": "0.3.6",
"eslint-plugin-import": "2.25.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "10.4.0",
"typescript": "4.5.4"
},
"packageManager": "yarn@3.1.1"
}