-
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) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 798 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": "adventofcode",
"version": "1.0.0",
"description": "Solutions to adventofcode problems",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && cp -r src dist && tsc",
"start": "node -r ./bootstrap.js dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts --watch src",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/fs-extra": "^8.0.1",
"@types/jest": "^26.0.0",
"@types/node": "^12.12.5",
"fs-extra": "^8.1.0",
"jest": "^26.4.0",
"nodemon": "^1.19.4",
"rimraf": "^3.0.0",
"ts-jest": "^26.4.0",
"ts-node": "^8.4.1",
"typescript": "^4.1.0"
},
"dependencies": {
"chalk": "^3.0.0",
"tsconfig-paths": "^3.12.0"
}
}