-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "canes",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"eslint": "eslint . --ext .ts,.tsx",
"ts-check": "tsc --noemit",
"lint": "npm run eslint --fix && npm run ts-check",
"test": "jest",
"test:watch": "jest --watchAll",
"benchmark:basic": "npm run benchmark",
"benchmark:average": "npm run benchmark -- --average",
"benchmark": "tsx benchmark/handler.ts",
"prepare": "husky install",
"pre-commit": "npm run lint && git add . && npm t",
"preview": "vite preview"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/react-window": "^1.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-window": "^1.8.10"
},
"devDependencies": {
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-path": "^1.3.0",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-tsconfig-paths": "^4.3.2"
}
}