-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "advent-of-code",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm.cmd run compile",
"pretest": "npm.cmd run compile",
"posttest": "npm.cmd run lint",
"start": "nodemon --watch 'utils/**/*.ts' --exec \"npx ts-node\" utils/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"local": "npm i -g && aoc",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdwile/advent-of-code.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jdwile/advent-of-code/issues"
},
"homepage": "https://github.com/jdwile/advent-of-code#readme",
"devDependencies": {
"@types/node": "^14.18.33",
"gts": "^3.1.1",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "~4.7.0"
},
"dependencies": {
"chalk": "^4.1.2",
"clear": "^0.1.0",
"commander": "^9.4.1",
"dotenv": "^16.0.3",
"figlet": "^1.5.2",
"find-config": "^1.0.0",
"got": "^12.5.3",
"path": "^0.12.7"
},
"main": "./build/index.js",
"bin": {
"aoc": "./build/index.js"
}
}