-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.82 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.82 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
{
"name": "data-forge-notebook",
"description": "Data-Forge Notebook is a cross-platform notebook application for JavaScript and TypeScript.",
"author": "ashley@codecapers.com.au",
"scripts": {
"evaluation-engine": "cross-env PORT=9000 pnpm --filter evaluation-engine-shell run start:dev",
"start": "concurrently --names=\"evaluation-engine,serve-plugins,browser\" \"pnpm run evaluation-engine\" \"pnpm run serve-plugins\" \"cross-env EVALUATION_ENGINE_URL=http://localhost:9000 pnpm --filter browser run serve\" --kill-others",
"testbed": "concurrently --names=\"serve-plugins,testbed\" \"pnpm run serve-plugins\" \"pnpm --filter testbed run serve\" --kill-others",
"electron:static": "concurrently --names=\"evaluation-engine,electron\" --kill-others \"pnpm run evaluation-engine\" \"cross-env EVALUATION_ENGINE_URL=http://localhost:9000 pnpm --filter electron run electron:static\"",
"electron:dev": "concurrently --names=\"evaluation-engine,serve-plugins,electron\" --kill-others \"pnpm run evaluation-engine\" \"pnpm run serve-plugins\" \"cross-env EVALUATION_ENGINE_URL=http://localhost:9000 pnpm --filter electron run electron:dev\"",
"build-browser": "pnpm --filter browser run build",
"build-electron-win": "pnpm --filter electron run build-win",
"build-electron-linux": "pnpm --filter electron run build-linux",
"build-electron-mac": "pnpm --filter electron run build-mac",
"clean": "pnpm --stream -r run clean",
"compile": "pnpm --stream -r run compile",
"compile:watch": "pnpm --stream -r --parallel run compile:watch",
"test": "pnpm --stream -r test",
"test:watch": "pnpm --stream -r run test:watch",
"serve-plugins": "node ./scripts/serve-plugins.js",
"build-plugins": "node ./scripts/build-plugins.js",
"s": "pnpm run start",
"tb": "pnpm run testbed",
"b": "pnpm run build-browser",
"be": "pnpm run build-electron",
"c": "pnpm run compile",
"cw": "pnpm run compile:watch",
"e": "pnpm run electron:static",
"ed": "pnpm run electron:dev",
"t": "pnpm run test",
"tw": "pnpm run test:watch"
},
"devDependencies": {
"concurrently": "^7.0.0",
"copy-webpack-plugin": "^10.2.4",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"fork-ts-checker-notifier-webpack-plugin": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"msw": "^0.39.1",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"minimist": "^1.2.6",
"fs-extra": "^6.0.1",
"monaco-editor": "^0.32.1",
"@blueprintjs/core": "^5.7.1",
"@blueprintjs/icons": "^5.4.1"
},
"dependencies": {
"normalize.css": "^8.0.0",
"path-browserify": "^1.0.1"
}
}