-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "boilerplate-fullstack-tw",
"type": "module",
"version": "2.0.0",
"main": "server/index.js",
"license": "MIT",
"keywords": [
"fullstack"
],
"scripts": {
"test": "vitest",
"start": "node dist/server.js",
"dev": "run-p dev:client dev:server",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "run-s build:client build:server",
"build:client": "vite build",
"build:server": "esbuild --packages=external --platform=node --format=esm --outfile=dist/server.js --bundle server/index.ts",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"knex": "knex --knexfile ./server/db/knexfile.js",
"migrate": "knex migrate:latest",
"seed": "knex seed:run"
},
"eslintConfig": {
"extends": "@devacademy/eslint-config/react",
"ignorePatterns": [
"bundle.js"
]
},
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@heroicons/react": "^2.0.0",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.17",
"@types/nodemailer": "^6.4.15",
"aos": "^2.3.4",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"knex": "^2.5.1",
"nodemailer": "^6.9.14",
"pg": "^8.12.0",
"react-google-recaptcha": "^3.1.0",
"react-hook-form": "^7.52.2",
"react-icon": "^1.0.0",
"react-icons": "^5.2.1",
"react-modal": "^3.16.1",
"react-router": "^6.25.1",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1",
"sqlite3": "^5.1.7",
"superagent": "^8.1.2"
},
"devDependencies": {
"@devacademy/eslint-config": "^1.9.1",
"@tanstack/eslint-plugin-query": "^5.12.2",
"@tanstack/react-query": "^5.12.2",
"@tanstack/react-query-devtools": "^5.13.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/aos": "^3.0.7",
"@types/express": "^4.17.14",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-slick": "^0.23.13",
"@types/superagent": "^8.1.1",
"@types/supertest": "^6.0.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"esbuild": "^0.18.19",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"react": "^18.0.2",
"react-dom": "^18.2.0",
"react-router-dom": "^6.25.1",
"sass": "^1.77.6",
"supertest": "^6.3.4",
"tailwindcss": "^3.4.1",
"tsx": "^3.12.7",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vitest": "^1.4.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"browserslist": "> 2%, not dead"
}