-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.82 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
{
"name": "create-react-vite-app",
"version": "0.0.0",
"author": {
"name": "Gabriel Mayta",
"email": "[email protected]",
"url": "https://github.com/grandemayta"
},
"scripts": {
"start": "vite",
"start:mocks": "concurrently -c \"bgYellow,bgGreen\" -n \"SERVER,APP\" \"npm run server\" \"vite --mode mocks\"",
"server": "ts-node mocks/index.ts",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"test:one": "jest -- ",
"test:watch": "jest --watch -- ",
"test:watchAll": "jest --watchAll",
"test:coverage": "jest --collect-coverage"
},
"dependencies": {
"@tanstack/react-query": "^4.3.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.0"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.3.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vitejs/plugin-react": "^2.1.0",
"concurrently": "^7.4.0",
"cors": "^2.8.5",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"sass": "^1.54.9",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-tsconfig-paths": "^3.5.0"
},
"engines": {
"node": "^14.x"
},
"license": "MIT"
}