-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
74
75
76
77
78
79
{
"name": "watson",
"version": "0.1.0",
"description": "Watson is a web-based, offline Java thread dump analyzer",
"author": "Daniel Rauf <[email protected]> (https://github.com/drauf/)",
"license": "MIT",
"homepage": "https://drauf.github.io/watson/",
"repository": {
"type": "git",
"url": "https://github.com/drauf/watson.git"
},
"bugs": {
"url": "https://github.com/drauf/watson/issues"
},
"dependencies": {
"d3": "7.8.5",
"d3-flame-graph": "4.1.3",
"flatted": "3.2.7",
"jszip": "^3.10.1",
"localforage": "1.10.0",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-app-polyfill": "3.0.0",
"react-dom": "18.2.0",
"react-dropzone": "14.2.3",
"react-router-dom": "6.15.0",
"recharts": "2.7.3",
"spark-md5": "3.0.2"
},
"devDependencies": {
"@babel/core": "7.22.10",
"@playwright/test": "1.37.1",
"@testing-library/react": "14.0.0",
"@types/d3": "7.4.0",
"@types/node": "20.5.1",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "5.3.3",
"@types/spark-md5": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"@vitejs/plugin-react-swc": "3.3.2",
"@vitest/coverage-v8": "0.34.2",
"browserslist": "4.21.10",
"eslint": "8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"jsdom": "22.1.0",
"stylelint": "15.10.3",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-standard": "34.0.0",
"stylelint-order": "6.0.3",
"typescript": "5.1.6",
"vite": "^5.3.3",
"vite-plugin-singlefile": "^2.0.2",
"vite-tsconfig-paths": "4.2.0",
"vitest": "0.34.2"
},
"scripts": {
"start": "vite",
"build": "tsc -p tsconfig.prod.json && vite build",
"serve": "vite preview",
"lint": "eslint --fix 'src/**/*.tsx' && stylelint --fix 'src/**/*.css'",
"test": "vitest",
"test:coverage": "vitest run --coverage --watch=false",
"test:e2e": "playwright test",
"predeploy": "yarn build"
},
"browserslist": [
"last 2 chrome versions",
"last 2 edge versions",
"last 2 firefox versions",
"last 2 safari versions"
],
"packageManager": "[email protected]"
}