-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1004 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
33
34
35
{
"name": "aoc-template",
"version": "5.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.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"babel-jest": "^29.7.0",
"babel-plugin-module-resolver": "^5.0.2",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"prettier": "^3.4.1",
"prettier-eslint": "^16.3.0"
}
}