-
-
Notifications
You must be signed in to change notification settings - Fork 222
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "vite-app",
"version": "0.6.12",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"clean": "rimraf ./dist ./tsconfig.tsbuildinfo ./node_modules/.vite",
"dev": "vite",
"fix-all-files": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --fix",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx,.cjs,.mjs --cache --cache-location ../../.cache/eslint/vite-app.eslintcache",
"serve": "vite preview",
"test": "yarn test-unit",
"test-unit": "echo 'No test present yet'",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"dependencies": {
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@your-org/common-i18n": "workspace:^",
"@your-org/core-lib": "workspace:^",
"@your-org/ui-lib": "workspace:^",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@babel/core": "7.26.9",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-v8": "2.1.8",
"@vitest/ui": "2.1.8",
"@your-org/eslint-config-bases": "workspace:^",
"eslint": "8.57.1",
"eslint-plugin-tailwindcss": "3.18.0",
"happy-dom": "17.0.3",
"prettier": "3.5.1",
"rimraf": "6.0.1",
"tailwindcss": "3.4.17",
"typescript": "5.7.3",
"vite": "5.4.11",
"vite-plugin-svgr": "4.3.0",
"vite-tsconfig-paths": "5.1.4",
"vitest": "2.1.8"
}
}