-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 858 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
{
"name": "advent-of-code-2018",
"version": "1.0.0",
"description": "Advent of Code 2018 in TypeScript",
"main": "index.js",
"dependencies": {
"@types/jest": "24.0.23",
"@types/node": "12.12.14",
"@types/ramda": "0.26.36",
"fsevents": "2.1.2",
"immutable": "4.0.0-rc.12",
"jest": "24.9.0",
"prettier": "1.19.1",
"ramda": "0.26.1",
"ts-jest": "24.2.0",
"tslint": "5.20.1",
"typescript": "3.7.2"
},
"devDependencies": {},
"scripts": {
"run": "node --stack_size=999999 --max-old-space-size=8192 src/app.js",
"start": "tsc && node src/app.js",
"dev-compile": "tsc -w",
"test": "jest",
"test-watch": "jest --watch"
},
"author": "ssnielsen (https://github.com/ssnielsen)",
"license": "ISC"
}