-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.65 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.65 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
{
"name": "team-creator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "NODE_ENV=test jest",
"test:snapshot": "NODE_ENV=test jest --updateSnapshot",
"test:watch": "NODE_ENV=test jest --watchAll --updateSnapshot",
"test:coverage": "NODE_ENV=test jest --coverage --updateSnapshot",
"format": "npx prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.6.1",
"@atlaskit/pragmatic-drag-and-drop-react-drop-indicator": "^1.1.0",
"@tanstack/react-query": "^5.80.10",
"@testing-library/dom": "^10.4.0",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"date-fns-tz": "^3.2.0",
"dotenv": "^16.4.5",
"express-validator": "^7.2.0",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.9.0",
"mongoose": "^8.6.3",
"next": "^15.1.7",
"nodemailer": "^7.0.10",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"react-select": "^5.9.0",
"react-spinners": "^0.17.0",
"sharp": "^0.33.5",
"xss": "^1.0.15"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.80.10",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/bcryptjs": "^2.4.6",
"axios-mock-adapter": "^2.1.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^3.4.1"
}
}