-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "",
"type": "module",
"version": "0.0.1",
"description": "session template fix",
"main": "server.js",
"author": "",
"license": "UNLICENSED",
"dependencies": {
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"animate.css": "^4.1.1",
"axios": "^1.7.2",
"bcrypt": "*",
"bull": "*",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"connect-mongo": "*",
"cors": "*",
"dotenv": "*",
"express": "*",
"express-session": "^1.18.0",
"jsonschema": "*",
"lucide-react": "^0.395.0",
"mongodb": "*",
"mongoose": "*",
"multer": "^1.4.5-lts.1",
"nodemailer": "*",
"openai": "^4.73.0",
"pino": "*",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"babel": "*",
"babel-preset-env": "*",
"babel-preset-jest": "*",
"concurrently": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-import": "*",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest": "*",
"nodemon": "*",
"pino-pretty": "*",
"postcss": "^8.4.38",
"prettier": "*",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "*",
"supertest": "*",
"tailwindcss": "^3.4.4",
"vite": "^5.1.6"
},
"scripts": {
"start:api": "node server.js",
"dev:api": "nodemon -w api -w .env -w server.js server | pino-pretty -clt -i 'hostname,pid'",
"lint:api": "eslint .",
"prettier:api": "prettier -w .",
"test:api": "jest --roots test --verbose",
"coverage:api": "jest --roots test --verbose --coverage",
"watch-test:api": "jest --roots test --verbose --watch",
"dev:ui": "vite",
"build:ui": "vite build",
"lint:ui": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview:ui": "vite preview",
"dev": "concurrently -n api,ui \"npm:dev:api\" \"npm:dev:ui\""
}
}