-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 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
{
"name": "quesmistry-react",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run format && next lint && next dev",
"build": "npm run test && next build",
"start": "npx serve@latest dist",
"format": "prettier --write \"{app,demo,layout,types}/**/*.{js,ts,tsx,d.ts}\"",
"lint": "next lint",
"test": "npx vitest run --coverage"
},
"dependencies": {
"@types/node": "20.13.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"chart.js": "4.2.1",
"moment": "^2.30.1",
"next": "^14.2.3",
"primeflex": "^3.3.1",
"primeicons": "^7.0.0",
"primereact": "^10.6.6",
"quill": "^2.0.2",
"react": "^18.3.1",
"react-cookie": "^7.1.4",
"react-dom": "18.3.1",
"react-hook-form": "^7.53.0",
"react-router-dom": "^6.27.0",
"typescript": "5.5.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@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.2",
"@vitest/coverage-istanbul": "^2.1.3",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"jsdom": "^25.0.1",
"mutationobserver-shim": "^0.3.7",
"prettier": "^2.8.8",
"sass": "^1.63.4",
"vitest": "^2.1.3"
}
}