-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 963 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 963 Bytes
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
{
"name": "aoc2023",
"version": "1.0.0",
"description": "Resolution of problems for the advent of code 2023",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts --fix",
"start": "cross-var tsup ./src/solutions/aoc-01/index.ts && node ./dist/index.js",
"watch": "concurrently \"npm run watch:js\" \"npm run watch:ts\"",
"watch:js": "nodemon -q --watch ./dist/index.js ./dist",
"watch:ts": "cross-var tsup ./src/solutions/aoc-$day/index.ts --watch src",
"new": "sh ./scripts/create-files.sh",
"get-data": "sh ./scripts/fetch-data.sh",
"init": "sh ./scripts/init.sh"
},
"author": "Steven San",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.10",
"eslint": "^7.14.0",
"nodemon": "^2.0.15",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"dependencies": {
"concurrently": "^7.6.0",
"cross-var": "^1.1.0",
"tsup": "^6.5.0"
}
}