-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.84 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
{
"name": "react-playground",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"configure": "powershell .\\node-install.ps1 && npm install",
"start": "npm run configure && vite --port 3000 --open",
"build": "tsc && vite build --sourcemap --emptyOutDir",
"build:ci": "netlify init && netlify build",
"deploy": "netlify login && npm run build:ci && netlify deploy",
"serve": "npm run build && vite preview --port 3000 --open",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write ./src",
"pre-test": "npx playwright install --with-deps",
"test": "npm run pre-test && vitest",
"pre-test:ci": "npx playwright install --with-deps chromium",
"test:ci": "vitest --browser.name=chromium --browser.headless --no-watch",
"coverage": "npm run pre-test && vitest run --coverage"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.12",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/browser": "^2.1.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jsdom": "^24.0.0",
"netlify-cli": "^17.22.1",
"playwright": "^1.44.1",
"prettier": "^3.4.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.20.0",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.0"
}
}