-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 6.28 KB
/
package.json
File metadata and controls
169 lines (169 loc) · 6.28 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "isaac-react-app",
"version": "4.1.10-SNAPSHOT",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=8"
},
"engineStrict": true,
"resolutions": {
"@types/react": "^18.3.23"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.2",
"@hello-pangea/dnd": "^18.0.1",
"@popperjs/core": "^2.11.8",
"@reduxjs/toolkit": "^1.9.7",
"@vitejs/plugin-react": "^5.1.1",
"axios": "^1.11.0",
"billboard.js": "^3.16.0",
"core-js": "^3.38.1",
"dayjs": "^1.11.13",
"he": "^1.2.0",
"highlight.js": "^11.11.1",
"history": "^4.10.1",
"html-to-text": "^9.0.5",
"identity-obj-proxy": "3.0.0",
"immer": "^9.0.21",
"inequality": "1.2.6",
"inequality-grammar": "1.3.7",
"isaac-graph-sketcher": "0.13.7",
"js-cookie": "^3.0.5",
"katex": "^0.16.11",
"leaflet": "^1.9.4",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"p5": "^1.10.0",
"plausible-tracker": "^0.3.9",
"qrcode": "^1.5.4",
"query-string": "^7.1.3",
"rand-seed": "^1.0.2",
"react": "^18.3.1",
"react-circular-progressbar": "^2.1.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^3.1.4",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.9",
"react-router-dom": "^7.12.0",
"react-select": "^5.8.0",
"react-window": "^1.8.10",
"reactstrap": "^9.2.2",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"remarkable": "^2.0.1",
"uuid": "^10.0.0"
},
"scripts": {
"build-phy": "vite build --config config/vite.config.sci.ts",
"build-ada": "vite build --config config/vite.config.ada.ts",
"build-phy-dev": "vite build --mode development --config config/vite.config.sci.ts",
"build-ada-dev": "vite build --mode development --config config/vite.config.ada.ts",
"start-phy": "vite --config config/vite.config.sci.ts --port 8004",
"start-ada": "vite --config config/vite.config.ada.ts --port 8003",
"test": "yarn run test-phy && yarn run test-ada",
"test-visual": "yarn run test-phy-visual && yarn run test-ada-visual",
"test-visual-update-baselines": "yarn run test-phy-visual-update-baseline && yarn run test-ada-visual-update-baseline",
"test-phy": "jest --config config/jest/jest.config.physics.js",
"test-phy-visual": "python3 vrt-in-docker.py sci",
"test-phy-visual-update-baseline": "python3 vrt-in-docker.py sci --update-baselines",
"test-ada": "jest --config config/jest/jest.config.ada.js",
"test-ada-visual": "python3 vrt-in-docker.py ada",
"test-ada-visual-update-baseline": "python3 vrt-in-docker.py ada --update-baselines",
"test-sci-visual-component": "CYPRESS_SITE=sci yarn cypress open --component --browser chrome",
"test-ada-visual-component": "CYPRESS_SITE=ada yarn cypress open --component --browser chrome",
"lint": "eslint -c eslint.config.mjs src/",
"lint:ci": "CI=true yarn run lint --max-warnings=0 --pass-on-unpruned-suppressions",
"lint:prune": "CI=true yarn run lint --prune-suppressions",
"analyse-bundle-phy": "npx vite-bundle-analyzer --config config/vite.config.sci.ts",
"analyse-bundle-ada": "npx vite-bundle-analyzer --config config/vite.config.ada.ts",
"build-ada-renderer": "vite build --config config/vite.config.ada.renderer.ts",
"start-ada-renderer": "vite --port 3001 --config config/vite.config.ada.renderer.ts",
"build-phy-renderer": "vite build --config config/vite.config.sci.renderer.ts",
"start-phy-renderer": "vite --port 3002 --config config/vite.config.sci.renderer.ts",
"build-renderer": "yarn run build-ada-renderer && yarn run build-phy-renderer",
"deps:package-json-updates": "./package-updates.sh"
},
"browserslist": [
">0.2%",
"not dead",
"not ie > 0",
"not op_mini all"
],
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/eslint-parser": "^7.26.10",
"@babel/plugin-transform-class-properties": "^7.25.4",
"@babel/plugin-transform-classes": "^7.25.4",
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.1",
"@frsource/cypress-plugin-visual-regression-diff": "^3.3.10",
"@stylistic/eslint-plugin": "^5.4.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/he": "^1.2.3",
"@types/history": "^4.7.11",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/katex": "^0.16.7",
"@types/leaflet": "^1.9.12",
"@types/lodash": "^4.17.16",
"@types/node": "^20.16.3",
"@types/object-hash": "^3.0.6",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/react-leaflet": "^2.8.3",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-window": "^1.8.8",
"@types/redux-logger": "^3.0.13",
"@types/redux-mock-store": "^1.0.6",
"@types/remarkable": "^2.0.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"axios-mock-adapter": "^2.1.0",
"babel-eslint": "^10.1.0",
"bootstrap": "^5.3.3",
"bootstrap-block-grid": "^1.1.7",
"cypress": "^15.7.1",
"dotenv": "^10.0.0",
"eslint": "^9.18.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.9.0",
"graphql": "^16.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-fixed-jsdom": "^0.0.9",
"jest-watch-typeahead": "^2.2.2",
"msw": "^2.7.3",
"react-app-polyfill": "^3.0.0",
"react-leaflet": "^4.2.1",
"redux-mock-store": "^1.5.4",
"redux-thunk": "^2.4.2",
"sass": "^1.77.8",
"ts-jest": "^29.2.6",
"typescript": "^5.5.4",
"typescript-eslint": "^8.21.0",
"undici": "6.19.8",
"vite": "^7.2.6",
"vite-bundle-analyzer": "^1.3.2"
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}