-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.12 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"name": "adventofcode",
"version": "1.0.0",
"description": "Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. People use them as a speed contest, interview prep, company training, university coursework, practice problems, or to challenge each other.",
"dependencies": {
"@types/express": "^4.17.2",
"@types/readline-sync": "^1.4.3",
"@types/serve-favicon": "^2.5.0",
"express": "^4.17.1",
"line-reader": "^0.4.0",
"readline-sync": "^1.4.10",
"serve-favicon": "^2.5.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"devDependencies": {
"@types/line-reader": "0.0.28",
"nodemon": "^2.0.1"
},
"scripts": {
"dev": "nodemon app/api/server.ts",
"start": "tsc && node bin/api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jaywaa/adventofcode.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jaywaa/adventofcode/issues"
},
"homepage": "https://github.com/Jaywaa/adventofcode#readme"
}