-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "wunderdog-starter",
"license": "MIT",
"version": "0.0.1",
"engines": {
"node": "20.x"
},
"scripts": {
"prestart": "npm run build",
"start": "ts-node --project ./tsconfig.node.json ./server/index.ts",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "ts-node-dev --project ./tsconfig.node.json ./server/index.ts",
"clean": "rimraf ./dist",
"build": "vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier -c .",
"format:fix": "prettier -w .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"prepare": "husky install"
},
"dependencies": {
"@types/cors": "2.8.17",
"@types/express": "4.17.21",
"@types/react": "18.3.5",
"@types/react-dom": "18.3.0",
"axios": "1.7.7",
"cors": "2.8.5",
"express": "4.20.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"reset-css": "5.0.2",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"devDependencies": {
"@eslint/js": "9.10.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/react": "16.0.1",
"@vitejs/plugin-react": "4.3.1",
"@vitest/ui": "2.0.5",
"concurrently": "9.0.1",
"dotenv-cli": "7.4.2",
"eslint": "9.10.0",
"eslint-plugin-react": "7.36.1",
"globals": "15.9.0",
"husky": "^9.1.6",
"jsdom": "25.0.0",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"ts-node-dev": "2.0.0",
"typescript-eslint": "8.6.0",
"vite": "5.4.4",
"vitest": "2.0.5"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}