-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "tk-test-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start:client": "vite",
"start:server": "nodemon server/index.js",
"start": "concurrently --names \"SERVER,CLIENT\" --prefix-colors \"magenta,blue\" \"npm run start:server\" \"npm run start:client\"",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"body-parser": "^2.2.2",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"plaid": "^41.1.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-plaid-link": "^4.1.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"autoprefixer": "^10.4.24",
"concurrently": "^9.2.1",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^16.5.0",
"nodemon": "^3.1.11",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vite": "^7.3.1"
}
}