forked from source-academy/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
159 lines (159 loc) · 5.43 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
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
{
"private": true,
"name": "frontend",
"version": "1.4.3",
"scripts-info": {
"format": "Format source code",
"start": "Start the Webpack development server",
"build": "Build production bundle",
"test": "Run unit tests",
"update-ui-snapshots": "Update UI test snapshots"
},
"scripts": {
"build": "cross-env EXTEND_ESLINT=true NODE_OPTIONS=--max_old_space_size=8192 craco build",
"coverage": "./scripts/coverage-fix.sh do && craco test --coverage && ./scripts/coverage-fix.sh undo",
"format": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix src && prettier --write \"src/**/*.{js,jsx,ts,tsx}\" && prettier --write --parser scss \"src/**/*.scss\"",
"format:tsx": "prettier --list-different \"src/**/*.{js,jsx,ts,tsx}\"",
"format:scss": "prettier --list-different --parser scss \"src/**/*.scss\"",
"format:ci": "yarn run format:tsx && yarn run format:scss",
"start": "cross-env EXTEND_ESLINT=true BROWSER=none PORT=8000 craco start",
"test": "cross-env TZ=UTF-8 craco test",
"test-coveralls": "./scripts/test-coveralls.sh",
"update-ui-snapshots": "jest --updateSnapshot",
"eslint": "eslint --ext \".js,.jsx,.ts,.tsx\" src",
"prepare": "husky install"
},
"dependencies": {
"@blueprintjs/core": "^4.6.1",
"@blueprintjs/datetime": "^4.3.3",
"@blueprintjs/icons": "^4.4.0",
"@blueprintjs/popover2": "^1.4.3",
"@blueprintjs/select": "^4.5.1",
"@octokit/rest": "^19.0.5",
"@sentry/browser": "^7.8.0",
"@sourceacademy/sharedb-ace": "^2.0.2",
"@sourceacademy/sling-client": "^0.1.0",
"@szhsin/react-menu": "^3.2.0",
"@tanstack/react-table": "^8.7.9",
"@tremor/react": "^1.7.0",
"ace-builds": "^1.4.14",
"acorn": "^8.8.2",
"ag-grid-community": "^28.0.2",
"ag-grid-react": "^28.0.0",
"array-move": "^4.0.0",
"browserfs": "^1.4.3",
"classnames": "^2.3.2",
"flexboxgrid": "^6.3.1",
"flexboxgrid-helpers": "^1.1.3",
"js-slang": "^1.0.23",
"konva": "^8.3.14",
"lodash": "^4.17.21",
"lz-string": "^1.4.4",
"moment": "^2.29.4",
"normalize.css": "^8.0.1",
"phaser": "^3.55.2",
"query-string": "^7.1.1",
"re-resizable": "^6.9.9",
"react": "^17.0.2",
"react-ace": "^10.1.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-draggable": "^4.4.5",
"react-dropzone": "^14.2.3",
"react-hotkeys": "^2.0.0",
"react-konva": "^17.0.2-5",
"react-latex-next": "^2.1.0",
"react-mde": "^11.5.0",
"react-papaparse": "^4.0.2",
"react-qr-reader": "^3.0.0-beta-1",
"react-redux": "^8.0.5",
"react-responsive": "^9.0.0-beta.10",
"react-router-dom": "^5.3.0",
"react-simple-keyboard": "^3.4.240",
"react-sortable-hoc": "^2.0.0",
"react-syntax-highlighter": "^15.5.0",
"react-textarea-autosize": "^8.3.4",
"redux": "^4.2.0",
"redux-mock-store": "^1.5.4",
"redux-saga": "^1.1.3",
"showdown": "^2.1.0",
"sourceror": "^0.8.5",
"typesafe-actions": "^5.1.0",
"uuid": "^8.3.2",
"xml2js": "^0.5.0",
"yareco": "^0.1.5"
},
"devDependencies": {
"@craco/craco": "^7.1.0",
"@svgr/webpack": "^6.3.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^14.3.0",
"@types/acorn": "^6.0.0",
"@types/enzyme": "3.10.12",
"@types/gapi": "^0.0.42",
"@types/gapi.auth2": "^0.0.56",
"@types/gapi.client": "^1.0.5",
"@types/gapi.client.drive": "^3.0.14",
"@types/google.picker": "^0.0.39",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.189",
"@types/lz-string": "^1.3.34",
"@types/react": "^17.0.38",
"@types/react-copy-to-clipboard": "^5.0.4",
"@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.24",
"@types/react-responsive": "^8.0.5",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "^5.3.3",
"@types/react-syntax-highlighter": "^15.5.5",
"@types/react-test-renderer": "^18.0.0",
"@types/react-textarea-autosize": "^8.0.0",
"@types/redux-mock-store": "^1.0.3",
"@types/showdown": "^2.0.0",
"@types/uuid": "^8.3.4",
"@types/xml2js": "^0.4.11",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.7",
"babel-core": "6",
"babel-runtime": "^6.26.0",
"buffer": "^6.0.3",
"canvas": "^2.9.3",
"constants-browserify": "^1.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"https-browserify": "^1.0.0",
"husky": "^8.0.2",
"npm-run-all": "^4.1.5",
"os-browserify": "^0.3.0",
"prettier": "^2.7.1",
"process": "^0.11.10",
"react-error-overlay": "^6.0.11",
"react-scripts": "^5.0.1",
"react-test-renderer": "^18.2.0",
"redux-saga-test-plan": "^4.0.6",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.54.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12",
"typescript": "~4.7.4",
"url": "^0.11.0"
},
"resolutions": {
"//": "React 18's types are much stricter and upgrading to it (even if indirectly via a dependency) results in many type errors. FIXME: Remove this after upgrading fully to React 18 and fixing all of the type errors.",
"@types/react": "^17.0.38"
},
"browserslist": {
"production": [
"Firefox ESR",
"last 2 chrome versions",
"last 2 safari versions"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}