This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 3.18 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
{
"name": "edacation",
"description": "Web based learning environment for digital hardware design.",
"version": "1.0.0",
"license": "UNLICENSED",
"private": true,
"contributors": [
"Daniel Huisman <daniel@huisman.me> (https://danielhuisman.io)"
],
"repository": "github:Hendrik-0/EDAcation",
"keywords": [
"edacation",
"digital",
"hardware",
"design",
"fpga"
],
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"lint": "eslint src",
"clean": "rimraf dist",
"build": "yarn run clean && yarn run lint && yarn run build:parcel && yarn run build:fix && yarn run build:graphviz",
"build:parcel": "parcel build public/index.html --public-url . --no-source-maps --no-optimize",
"build:fix": "grep -rl _serialize dist | xargs sed -i 's|let _getSerialId, _serialize, _deserialize;|let _getSerialId;|'",
"build:graphviz": "mkdir -p dist/graphviz/@hpcc-js/wasm && cp node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm dist && cp node_modules/@hpcc-js/wasm/dist/index.min.js dist/graphviz/@hpcc-js/wasm && cp node_modules/@hpcc-js/wasm/dist/graphvizlib.wasm dist/graphviz/@hpcc-js/wasm",
"dev": "parcel public/index.html"
},
"dependencies": {
"@hpcc-js/wasm": "^1.14.1",
"@monaco-editor/react": "^4.4.5",
"@primer/octicons-react": "^17.3.0",
"@primer/primitives": "^7.8.3",
"@primer/react": "^35.2.2",
"@reduxjs/toolkit": "^1.8.2",
"@types/d3-graphviz": "^2.6.7",
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@types/react-helmet": "^6.1.5",
"@types/uuid": "^8.3.4",
"@types/wicg-file-system-access": "^2020.9.5",
"allotment": "^1.14.2",
"coi-serviceworker": "^0.1.6",
"d3-graphviz": "^4.1.1",
"digitaljs": "^0.12.1",
"formik": "^2.2.9",
"idb-keyval": "^6.1.0",
"monaco-editor": "^0.33.0",
"nextpnr": "^0.4.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-helmet": "^6.1.0",
"react-is": "^18.1.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2",
"yosys": "^0.22.1",
"yosys2digitaljs": "^0.6.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react-hooks": "^4.5.0",
"events": "^3.3.0",
"http-proxy-middleware": "^2.0.6",
"os-browserify": "^0.3.0",
"parcel": "2.5.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"rimraf": "^3.0.2",
"stream-browserify": "^3.0.0",
"typescript": "^4.7.3",
"util": "^0.12.4"
},
"alias": {
"tmp-promise": "./src/aliases/tmp.ts"
}
}