-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.1 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "fonder-ui",
"version": "0.1.0",
"private": true,
"license": "MIT",
"keywords": [
"nextjs",
"template"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"test": "jest --coverage",
"test:watch": "jest --watch --coverage",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --check \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-path .gitignore",
"prettier:fix": "prettier --write \"./**/*.{ts,tsx,js,jsx,css,scss,md}\" --ignore-pattern node_modules/",
"prepare": "husky install"
},
"dependencies": {
"@types/mercadopago": "^1.5.11",
"@types/styled-components": "^5.1.34",
"axios": "^1.7.3",
"cookies-next": "^4.1.0",
"fs": "^0.0.1-security",
"lucide-react": "^0.451.0",
"mercadopago": "^1.5.16",
"next": "14.0.1",
"next-auth": "^4.24.7",
"nodemailer": "^6.9.15",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.2.1",
"react-modal": "^3.16.1",
"react-webcam": "^7.2.0",
"sass": "^1.69.5",
"socket.io-client": "^4.8.0",
"styled-components": "^6.1.11"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^13.4.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.0.4",
"postcss": "^8.4.31",
"postcss-preset-mantine": "^1.10.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.0.3",
"typescript": "^5.4.5"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"npm run prettier:fix",
"npm run lint:fix"
]
}
}