This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "vite-configuration",
"version": "0.0.1",
"description": "",
"scripts": {
"start": "vite --mode development",
"start:https": "HTTPS=true vite --mode development",
"build": "tsc --noEmit && vite build --mode production",
"preview": "vite preview",
"preview:https": "HTTPS=true vite preview",
"build:preview": "npm run build && npm run preview",
"build:preview:https": "npm run build && npm run preview:https",
"build:qa": "vite build --mode qa",
"build:qa:preview": "npm run build:qa && npm run preview",
"test": "jest"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ag-grid-community/core": "27.3.0",
"ag-grid-community": "27.3.0",
"ag-grid-react": "27.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"rxjs": "7.8.1"
},
"devDependencies": {
"@swc/core": "1.3.55",
"@swc/jest": "0.2.26",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.0",
"@types/node": "18.15.11",
"@types/react": "18.0.35",
"@types/react-dom": "18.0.11",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"@vitejs/plugin-basic-ssl": "1.0.1",
"@vitejs/plugin-legacy": "4.0.2",
"@vitejs/plugin-react-swc": "3.3.0",
"eslint": "8.38.0",
"eslint-plugin-react": "7.32.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-transform-stub": "2.0.0",
"prettier": "2.8.7",
"rollup": "3.20.2",
"rollup-plugin-sass": "1.12.19",
"sass": "1.62.0",
"terser": "5.16.9",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"vite": "4.2.1",
"vite-plugin-eslint": "1.8.1"
}
}