-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 915 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
32
{
"name": "aoc-template",
"version": "4.0.0",
"description": "🎄Advent of Code Template",
"main": "index.js",
"repository": "https://github.com/caiangums/aoc-template.git",
"author": "Ilê Caian https://caian.dev",
"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.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.5",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2"
}
}