-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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
{
"name": "task-flexbox",
"version": "0.1.0",
"private": true,
"dependencies": {
"@types/node": "^20.11.25",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-config-react-app": "^7.0.1",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"puppeteer": "^24.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.2",
"vite": "^5.1.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^4.3.1"
},
"scripts": {
"start": "vite",
"lint": "eslint ./src",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "playwright test",
"prepare": "husky install && npx playwright install --with-deps"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@playwright/test": "^1.51.1"
}
}