forked from adaptyvbio/automancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.69 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
{
"name": "pr1",
"version": "0.0.0",
"main": "dist/index.js",
"types": "lib/types/index.d.ts",
"scripts": {
"build": "npm run build:css && npm run build:js && npm run build:html && (npm run build:types || true)",
"build:html": "node scripts/generate-html.js",
"build:js": "node scripts/build.js",
"build:js:watch": "node build.js --watch",
"build:css": "sass styles/main.scss:lib/styles/index.css --no-source-map",
"build:css:watch": "sass styles/main.scss:lib/styles/index.css --watch",
"build:types": "tsc",
"madge": "madge src/index.tsx --ts-config tsconfig.json --image graph.svg --circular",
"serve": "superstatic --config superstatic.json dist --port 8080"
},
"dependencies": {
"@floating-ui/react-dom-interactions": "^0.6.3",
"@fontsource/space-mono": "^4.5.8",
"@types/object-hash": "^3.0.2",
"error-stack-parser": "^2.0.7",
"idb-keyval": "^6.1.0",
"immutable": "^4.0.0",
"material-symbols": "^0.5.5",
"modern-websocket": "^0.1.0",
"monaco-editor": "^0.34.0",
"object-hash": "^3.0.0",
"pr1-shared": "file:../app/shared",
"quantops": "^0.2.0",
"react-merge-refs": "^1.1.0",
"react-split-grid": "^1.0.4",
"seq-ord": "^0.2.0",
"xterm": "^4.18.0",
"xterm-addon-fit": "^0.5.0"
},
"devDependencies": {
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/wicg-file-system-access": "^2020.9.5",
"esbuild": "~0.17.0",
"esbuild-sass-plugin": "^2.9.0",
"madge": "^5.0.1",
"postcss": "^8.4.16",
"postcss-modules": "^5.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.52.0",
"superstatic": "^9.0.2",
"typescript": "~5.0.0"
}
}