generated from caiangums/aoc-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 867 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
30
31
{
"name": "aoc-2021",
"version": "1.0.0",
"description": "🎄Advent of Code 2021",
"main": "index.js",
"repository": "https://github.com/caiangums/aoc-2021.git",
"author": "Ilê Caian <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"solve": "babel-node index.js",
"test": "jest --verbose",
"lint": "eslint src --fix",
"coverage": "jest --verbose --coverage",
"solution": "hygen solution new"
},
"dependencies": {
"@babel/core": "^7.16.0",
"@babel/node": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"hygen": "^6.1.0",
"jest": "^27.3.1",
"prettier": "^2.5.0",
"prettier-eslint": "^13.0.0"
}
}