-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.35 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.35 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
{
"name": "simulator",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier src --write",
"format:check": "prettier src --check",
"test": "vitest",
"test:ci": "vitest run",
"e2e:test": "npx playwright test",
"e2e:test:debug": "npx playwright test --debug"
},
"dependencies": {
"@fluentui/react": "^8.115.2",
"@fruk/simulator-core": "1.8.11",
"@reduxjs/toolkit": "^2.1.0",
"@tanstack/react-query": "^5.28.14",
"@uifabric/icons": "^7.9.5",
"blockly": "^10.3.1",
"js-interpreter": "^5.1.0",
"marked": "^11.2.0",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.3",
"react-syntax-highlighter": "^15.5.0",
"redux": "^5.0.1",
"styled-components": "^6.1.8",
"three": "^0.160.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@playwright/test": "^1.41.2",
"@tanstack/eslint-plugin-query": "^5.28.11",
"@testing-library/jest-dom": "^6.4.0",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.2",
"@types/gapi": "0.0.47",
"@types/gapi.auth2": "0.0.60",
"@types/node": "^20.11.19",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.11",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"jest-canvas-mock": "^2.5.2",
"prettier": "^3.2.4",
"semantic-release": "^23.0.2",
"typescript": "^5.2.2",
"vite": "^5.0.13",
"vite-plugin-node-polyfills": "^0.19.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^1.2.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}