-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
65
66
67
68
69
70
71
72
73
{
"name": "hone",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"copyViteManifestForDev": "cp -r dist/.vite public",
"build": "tsc && vite build && npm run copyViteManifestForDev",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.75",
"@mlc-ai/web-runtime": "^0.18.0-dev2",
"@mlc-ai/web-tokenizers": "^0.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"wouter": "^3.3.5",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@testing-library/jest-dom": "^6.4.5",
"@types/chrome": "^0.0.287",
"@types/jest": "^29.5.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-react": "^4.3.0",
"@webgpu/types": "^0.1.51",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.4",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vite-plugin-environment": "^1.1.3"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.ts"
],
"testMatch": [
"**/src/**/*.test.[jt]s?(x)"
],
"preset": "ts-jest",
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}