-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "web",
"version": "1.0.0",
"main": "js/entry.js",
"repository": "https://github.com/A1Liu/tci",
"author": "Albert Liu",
"license": "MIT",
"private": false,
"scripts": {
"start": "parcel js/index.html --out-dir .dist",
"build": "parcel build js/index.html --no-source-maps --out-dir .dist --public-url ./",
"deploy": "git push origin main:production"
},
"dependencies": {
"@monaco-editor/react": "^4.0.7",
"idb-keyval": "^5.0.2",
"monaco-editor": "^0.21.2",
"preact": "^10.5.9",
"prop-types": "^15.7.2",
"react-is": ">= 16.8.0",
"react-redux": "^7.2.2",
"react-split-pane": "^0.1.92",
"redux": "^2.0.0 || ^3.0.0 || ^4.0.0-0",
"styled-components": "^5.2.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"parcel-bundler": "1.x",
"parcel-plugin-wasm-pack": "file:./lib/parcel-plugin-wasm-pack"
},
"browserslist": [
"last 5 chrome version",
"last 5 firefox version",
"last 5 safari version"
],
"alias": {
"react": "preact/compat",
"react-dom": "preact/compat"
}
}