-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.74 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
80
81
82
83
84
{
"name": "synthetic-data-generator",
"version": "0.1.0",
"private": true,
"dependencies": {
"@codemirror/commands": "^6.6.0",
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@codemirror/language": "^6.10.2",
"@codemirror/lint": "^6.8.1",
"@codemirror/search": "^6.5.6",
"@codemirror/state": "^6.4.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.28.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.19",
"@mui/material": "^5.15.19",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@uiw/codemirror-extensions-basic-setup": "^4.22.2",
"@uiw/react-codemirror": "^4.22.2",
"ag-charts-community": "^9.3.1",
"ag-charts-react": "^9.3.1",
"ag-grid-community": "^31.3.2",
"ag-grid-react": "^31.3.2",
"ajv": "^8.16.0",
"ajv-keywords": "^5.1.0",
"axios": "^1.6.7",
"echarts": "^5.5.0",
"echarts-for-react": "^3.0.2",
"papaparse": "^5.4.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-codemirror2": "^8.0.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"react-simple-code-editor": "^0.13.1",
"react-syntax-highlighter": "^15.5.0",
"react-vega": "^7.6.0",
"reactflow": "^11.11.3",
"vega": "^5.29.0",
"vega-lite": "^5.18.1",
"vega-tooltip": "^0.34.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "CI=false ESLINT_NO_DEV_ERRORS=true react-app-rewired start",
"build": "CI=false ESLINT_NO_DEV_ERRORS=true react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"analyze": "npm run build && webpack-bundle-analyzer build/static/js/*.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-unused-vars": "off",
"react-hooks/exhaustive-deps": "off",
"eqeqeq": "off"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"react-app-rewired": "^2.2.1",
"webpack-bundle-analyzer": "^4.10.2"
}
}