-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 950 Bytes
/
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
{
"name": "oreoz.dev",
"private": true,
"dependencies": {
"@types/node": "^22.13.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"cypress": "^14.0.1",
"framer-motion": "^12.0.8",
"postcss": "^8.5.1",
"postcss-cli": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-rotating-text": "^1.4.1",
"start-server-and-test": "^2.0.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"scripts": {
"start": "vite",
"build": "vite build",
"test": "start-server-and-test start http://localhost:5173 cy:run",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}