CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/static/package.json
Views: 687
1
{
2
"name": "@cocalc/static",
3
"version": "1.136.7",
4
"description": "CoCalc's static frontend Webpack-based build system and framework",
5
"main": "./dist-ts/src/index.js",
6
"exports": {
7
".": "./dist-ts/src/index.js",
8
"./rspack-compiler": "./dist-ts/src/rspack-compiler.js"
9
},
10
"scripts": {
11
"preinstall": "npx only-allow pnpm",
12
"clean": "rm -rf dist dist-ts node_modules",
13
"copy-css": "mkdir -p dist-ts/src && cp -v src/*.css dist-ts/src/ && cp -v src/*.svg dist-ts/src/ && cp -v src/*.html dist-ts/src/",
14
"tsc": "pnpm run copy-css && cd src && ../../node_modules/.bin/tsc --watch --pretty --preserveWatchOutput",
15
"webpack-prod": "NODE_OPTIONS=--max_old_space_size=8000 NODE_ENV=production npx webpack --progress --color --watch",
16
"webpack-measure": "COCALC_OUTPUT=dist-measure MEASURE=true NODE_ENV=development pnpm webpack ",
17
"webpack-measure-prod": "COCALC_OUTPUT=dist-prod-measure MEASURE=true pnpm webpack-prod",
18
"build0": "pnpm run copy-css && cd src && ../../node_modules/.bin/tsc --build",
19
"build": "pnpm run build0 && ./production-build.py",
20
"build-dev": "pnpm run build0 && NODE_ENV=development pnpm rspack build",
21
"watch": "NODE_ENV=development pnpm rspack build -w",
22
"test": "pnpm exec jest",
23
"prepublishOnly": "pnpm test"
24
},
25
"repository": {
26
"type": "git",
27
"url": "https://github.com/sagemathinc/cocalc"
28
},
29
"keywords": [
30
"python",
31
"sage",
32
"sagemath",
33
"latex",
34
"terminal",
35
"web",
36
"ide",
37
"math",
38
"mathematics"
39
],
40
"author": "SageMath, Inc.",
41
"license": "SEE LICENSE.md",
42
"bugs": {
43
"url": "https://github.com/sagemathinc/cocalc/issues"
44
},
45
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/static",
46
"dependencies": {
47
"@cocalc/assets": "workspace:*",
48
"@cocalc/backend": "workspace:*",
49
"@cocalc/cdn": "workspace:*",
50
"@cocalc/frontend": "workspace:*",
51
"@cocalc/util": "workspace:*"
52
},
53
"devDependencies": {
54
"@rspack/cli": "^1.0.13",
55
"@rspack/core": "^1.0.13",
56
"@rspack/plugin-react-refresh": "^1.0.0",
57
"@types/jquery": "^3.5.5",
58
"@types/node": "^18.16.14",
59
"@types/react": "^18.3.10",
60
"@types/react-dom": "^18.3.0",
61
"@typescript-eslint/eslint-plugin": "^6.21.0",
62
"@typescript-eslint/parser": "^6.21.0",
63
"assert": "^2.0.0",
64
"awaiting": "^3.0.0",
65
"bootbox": "^4.4.0",
66
"bootstrap": "=3.4.1",
67
"bootstrap-colorpicker": "^2.5.3",
68
"buffer": "^6.0.3",
69
"cjsx-loader": "^3.0.0",
70
"clean-webpack-plugin": "^4.0.0",
71
"coffee-cache": "^1.0.2",
72
"coffee-loader": "^3.0.0",
73
"coffeescript": "^2.5.1",
74
"css-loader": "^7.1.2",
75
"entities": "^2.2.0",
76
"eslint": "^8.56.0",
77
"eslint-config-prettier": "^9.1.0",
78
"eslint-plugin-prettier": "^5.1.3",
79
"eslint-plugin-react": "^7.33.2",
80
"eslint-plugin-react-hooks": "^4.6.0",
81
"handlebars": "^4.7.7",
82
"handlebars-loader": "^1.7.1",
83
"html-loader": "^2.1.2",
84
"html-webpack-plugin": "^5.5.3",
85
"identity-obj-proxy": "^3.0.0",
86
"imports-loader": "^3.0.0",
87
"jquery": "^3.6.0",
88
"jquery-tooltip": "^0.2.1",
89
"jquery-ui": "^1.14.0",
90
"jquery-ui-touch-punch": "^0.2",
91
"jquery.scrollintoview": "^1.9",
92
"json-loader": "^0.5.7",
93
"less": "^4.1.1",
94
"less-loader": "^11.0.0",
95
"path-browserify": "^1.0.1",
96
"raw-loader": "^4.0.2",
97
"react": "^18.3.1",
98
"react-dom": "^18.3.1",
99
"react-helmet": "^6.1.0",
100
"react-refresh": "^0.14.2",
101
"react-test-renderer": "^18.2.0",
102
"sass": "^1.57.1",
103
"sass-loader": "^16.0.2",
104
"script-loader": "^0.7.2",
105
"source-map-loader": "^3.0.0",
106
"stream-browserify": "^3.0.0",
107
"style-loader": "^2.0.0",
108
"timeago": "^1.6.3",
109
"ts-jest": "^29.2.3",
110
"tsd": "^0.22.0",
111
"util": "^0.12.3",
112
"webpack-hot-middleware": "^2.26.1",
113
"webpack-path-rewriter": "^1.1.4"
114
}
115
}
116
117