-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
57
58
59
60
61
62
63
64
{
"name": "nicobar-portfolio-fe",
"version": "1.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"serve": "vite preview",
"lint:fix": "eslint ./src --ext .jsx,.js,.ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint:format": "prettier --loglevel warn --write \"./**/*.{js,jsx,ts,tsx,css,md,json}\" ",
"lint": "yarn lint:format && yarn lint:fix ",
"type-check": "tsc",
"test": "vitest --passWithNoTests",
"testrun": "vitest --passWithNoTests --run",
"predev": "yarn install",
"preview": "vite preview"
},
"dependencies": {
"@tanstack/react-query": "^4.29.19",
"framer-motion": "^10.12.18",
"purify-ts": "^2.0.1",
"react": "^18.2.0",
"react-bootstrap": "^2.8.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
"react-select": "^5.7.4",
"styled-components": "^6.0.3",
"zustand": "^4.3.9"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.29.9",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"jsdom": "^22.1.0",
"msw": "^1.2.2",
"prettier": "^3.0.0",
"typescript": "^5.1.6",
"vite": "^4.4.3",
"vite-plugin-mkcert": "^1.16.0",
"vitest": "^0.33.0",
"whatwg-fetch": "^3.6.2"
},
"msw": {
"workerDirectory": "public"
},
"license": "MIT"
}