forked from finn-nerd/Bit_by_Bit_Recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 KB
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
{
"name": "bit_by_bit_recipes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js,.jsx",
"lint:fix": "eslint . --ext .js,.jsx --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@headlessui/react": "^2.2.2",
"@tailwindcss/postcss": "^4.1.3",
"bcrypt": "^5.1.1",
"classnames": "^2.5.1",
"cookie": "^1.0.2",
"jsonwebtoken": "^9.0.2",
"next": "^15.2.3",
"nookies": "^2.5.2",
"pg": "^8.14.1",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.37.5",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"mini-css-extract-plugin": "^2.9.2",
"node-mocks-http": "^1.17.2",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.4"
}
}