-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
72 lines (72 loc) · 1.92 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
{
"name": "spark",
"version": "0.1.0",
"private": true,
"scripts": {
"proto": "protoc --ts_out src/viewer/proto --proto_path proto proto/spark.proto --ts_opt long_type_number --ts_opt add_pb_suffix",
"compile": "tsc",
"dev": "next dev",
"build": "yarn proto && next build",
"start": "next start",
"format": "prettier --write '**/*.ts' '**/*.tsx' '**/*.scss'",
"lint": "next lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@lucko/react-flame-graph": "1.4.1",
"@protobuf-ts/plugin": "^2.8.1",
"@sentry/nextjs": "^7.50.0",
"@types/react-dom": "^18.2.24",
"base64-arraybuffer": "^1.0.2",
"bowser": "^2.11.0",
"classnames": "^2.3.2",
"comlink": "^4.4.1",
"dayjs": "^1.11.6",
"history": "^5.3.0",
"local-storage": "^2.0.0",
"next": "^14.1.4",
"react": "^18.2.0",
"react-contexify": "^5.0.0",
"react-countdown-circle-timer": "^3.1.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.2",
"react-tooltip": "^5.26.3",
"react-virtualized": "^9.22.4",
"sass": "^1.55.0",
"sharp": "^0.32.1",
"victory": "^36.6.8"
},
"devDependencies": {
"@svgr/webpack": "^6.4.0",
"@types/node": "18.11.3",
"@types/react": "^18.2.74",
"@types/react-virtualized": "^9.21.29",
"eslint": "^8.27.0",
"eslint-config-next": "^14.1.4",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"typescript": "^4.8.4"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals"
],
"rules": {
"@next/next/no-img-element": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}