-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
{
"name": "groot",
"version": "0.1.0",
"private": true,
"dependencies": {
"@gofynd/fdk-client-javascript": "^3.16.2",
"axios": "^1.7.2",
"cookie-parser": "^1.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.25.1",
"serve-static": "^1.15.0",
"url-join": "^5.0.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "nodemon index.js",
"test": "jest"
},
"type": "module",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"axios-mock-adapter": "^1.22.0",
"babel-jest": "^29.7.0",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"nodemon": "^3.1.4",
"supertest": "^7.0.0",
"vite": "^5.3.5",
"vite-plugin-require-transform": "^1.0.21"
}
}