-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 915 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 915 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
32
33
34
35
36
{
"name": "advent-code-2021",
"version": "1.0.0",
"description": "Advent of Code 2021 <adventofcode.com/2021>",
"main": "index.js",
"config": {
"day": "14"
},
"scripts": {
"develop": "jest --watch src/day$npm_package_config_day/index.test.ts",
"solution:dev": "ts-node-dev --respawn --quiet src/day$npm_package_config_day",
"solutions:log": "ts-node-dev build/src",
"plop": "plop --plopfile scripts/plop/plopfile.js"
},
"keywords": [
"javascript",
"typescript",
"node"
],
"author": "María Simó",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"jest": "^27.4.3",
"plop": "^3.0.2",
"prettier": "^2.5.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"chalk": "^4.1.2"
}
}