-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
87 lines (87 loc) · 2.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "php-playground",
"version": "0.1.0",
"engines": {
"node": "22.4.0"
},
"type": "module",
"private": true,
"dependencies": {
"@chakra-ui/icons": "2.1.0",
"@chakra-ui/react": "2.8.0",
"@codemirror/language": "6.10.2",
"@codesandbox/sandpack-react": "2.19.9",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@monaco-editor/react": "4.6.0",
"@testing-library/jest-dom": "6.5.0",
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/lz-string": "1.5.0",
"@types/node": "20.12.8",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.1",
"debounce": "2.0.0",
"framer-motion": "11.5.4",
"lz-string": "1.5.0",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.0.1",
"react-router-dom": "6.26.2",
"react-select": "5.8.0",
"typescript": "5.6.2",
"web-vitals": "4.2.4"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite build && vite preview --port 8888",
"build:types": "npm run clean:types; npm-run-all --parallel build:types:*",
"build:types:general": "tsc -p ./tsconfig.json",
"clean": "npm-run-all --parallel clean:*",
"clean:all": "rm -rf build/* ./build-*/*",
"clean:types": "rm -rf build-types/* *.tsbuildinfo",
"format": "prettier --write src",
"lint:js": "eslint \"./src/**/*.{js,mjs,ts}\"",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "vitest",
"test:ci": "vitest run",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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.45.1",
"@testing-library/react": "16.0.1",
"@types/debounce": "1.2.4",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@vitejs/plugin-react": "4.3.1",
"esbuild": "0.24.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.35.0",
"jsdom": "^25.0.1",
"node-fetch": "3.3.2",
"vi-fetch": "0.8.0",
"vite": "5.4.10",
"vitest": "2.0.5"
}
}