-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.66 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "advent-of-code-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"new-day": "node ./template/generate-day.mjs"
},
"dependencies": {
"@headlessui/react": "^1.7.4",
"@heroicons/react": "^2.0.13",
"@sindresorhus/slugify": "^2.1.1",
"@vercel/og": "^0.0.21",
"inquirer": "^9.1.4",
"lcm": "^0.0.3",
"next": "13.0.6",
"next-plausible": "^3.6.5",
"next-sitemap": "^3.1.32",
"ramda": "^0.28.0",
"ramda-adjunct": "^3.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.40.0",
"recoil": "^0.7.6",
"use-elapsed-time": "^3.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/inquirer": "^9.0.3",
"@types/lcm": "^0.0.0",
"@types/node": "^18.11.11",
"@types/ramda": "^0.28.20",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.9",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"babel-plugin-inline-import": "^3.0.0",
"eslint": "8.29.0",
"eslint-config-next": "13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-ramda": "^2.5.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-text-transformer": "^1.0.4",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "4.9.3"
}
}