-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.89 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
{
"name": "hacker-news",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"start": "concurrently \"yarn server:dev\" \"yarn client:dev\"",
"build": "concurrently \"yarn server:build\" \"yarn client:build\"",
"preview": "cd ./server && cross-env NODE_ENV=production node dist/index.js",
"start:prduction": "cd ./server && node dist/index.js",
"server:dev": "cd ./server && concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"server:build": "cd ./server && tsc",
"client:dev": "vite serve ./client",
"client:build": "cd ./client && tsc && vite build",
"client:preview": "cd ./client && vite preview",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc",
"test": "cd ./client && vitest"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.6",
"axios": "^1.1.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"date-fns": "^2.29.3",
"express": "^4.18.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "5.3.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/node": "^18.11.9",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vitejs/plugin-react": "^2.2.0",
"concurrently": "^7.5.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"jsdom": "^20.0.2",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"typescript": "^4.6.4",
"vite": "^3.2.0",
"vitest": "^0.24.5"
}
}