-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.03 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
{
"name": "starships",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-react": "^1.9.0",
"@monaco-editor/react": "^4.2.2",
"@sentry/react": "^6.19.4",
"@sentry/tracing": "^6.19.4",
"@svb-41/core": "^0.14.0",
"@svb-41/engine": "^0.12.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.13",
"@types/react": "^17.0.17",
"@types/react-dom": "^17.0.9",
"craco": "^0.0.3",
"craco-alias": "^3.0.1",
"jwt-decode": "^3.1.2",
"monaco-themes": "^0.4.0",
"pixi.js": "^6.1.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^8.0.1",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-scripts": "4.0.3",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.1",
"rehype-highlight": "^5.0.2",
"sass": "^1.49.9",
"typescript": "^4.3.5",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1"
},
"scripts": {
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && craco start",
"build": "export SET NODE_OPTIONS=--openssl-legacy-provider && CI=;craco build",
"test": "craco test",
"eject": "craco eject",
"documentation": "node scripts/documentation.mjs"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"semi": 0,
"no-shadow": 0,
"curly": 0,
"no-unused-vars": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-redeclare": 0
}
},
"resolutions": {
"react-error-overlay": "6.0.9"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/uuid": "^8.3.1",
"node-fetch": "^3.2.2"
}
}