Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/static/package.json
5609 views
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",
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": "NO_RSPACK_DEV_SERVER=yes NODE_ENV=development pnpm rspack build -w",
22
"lint": "NODE_OPTIONS=--no-warnings eslint --max-warnings=0 \"src/**/*.{ts,tsx,js,jsx}\"",
23
"test": "pnpm exec jest",
24
"prepublishOnly": "pnpm test"
25
},
26
"repository": {
27
"type": "git",
28
"url": "https://github.com/sagemathinc/cocalc"
29
},
30
"keywords": [
31
"python",
32
"sage",
33
"sagemath",
34
"latex",
35
"terminal",
36
"web",
37
"ide",
38
"math",
39
"mathematics"
40
],
41
"author": "SageMath, Inc.",
42
"license": "SEE LICENSE.md",
43
"bugs": {
44
"url": "https://github.com/sagemathinc/cocalc/issues"
45
},
46
"homepage": "https://github.com/sagemathinc/cocalc/tree/master/src/packages/static",
47
"dependencies": {
48
"@cocalc/assets": "workspace:*",
49
"@cocalc/backend": "workspace:*",
50
"@cocalc/cdn": "workspace:*",
51
"@cocalc/frontend": "workspace:*",
52
"@cocalc/util": "workspace:*"
53
},
54
"devDependencies": {
55
"@rspack/cli": "^1.5.1",
56
"@rspack/core": "^1.5.1",
57
"@rspack/plugin-react-refresh": "^1.5.0",
58
"@testing-library/jest-dom": "^6.6.3",
59
"@testing-library/react": "^16.3.0",
60
"@types/jquery": "^3.5.5",
61
"@types/node": "^18.16.14",
62
"@types/react": "^19.1.10",
63
"@types/react-dom": "^19.1.7",
64
"@typescript-eslint/eslint-plugin": "^8.54.0",
65
"@typescript-eslint/parser": "^8.54.0",
66
"assert": "^2.0.0",
67
"awaiting": "^3.0.0",
68
"bootbox": "^4.4.0",
69
"bootstrap": "=3.4.1",
70
"bootstrap-colorpicker": "^2.5.3",
71
"buffer": "^6.0.3",
72
"cjsx-loader": "^3.0.0",
73
"clean-webpack-plugin": "^4.0.0",
74
"coffee-cache": "^1.0.2",
75
"coffee-loader": "^3.0.0",
76
"coffeescript": "^2.5.1",
77
"css-loader": "^7.1.2",
78
"entities": "^2.2.0",
79
"eslint": "^9.39.2",
80
"eslint-config-prettier": "^10.1.8",
81
"eslint-plugin-prettier": "^5.5.5",
82
"eslint-plugin-react": "^7.37.5",
83
"eslint-plugin-react-hooks": "^7.0.1",
84
"handlebars": "^4.7.7",
85
"handlebars-loader": "^1.7.1",
86
"html-loader": "^2.1.2",
87
"html-webpack-plugin": "^5.5.3",
88
"identity-obj-proxy": "^3.0.0",
89
"imports-loader": "^3.0.0",
90
"jquery": "^3.6.0",
91
"jquery-tooltip": "^0.2.1",
92
"jquery-ui": "^1.14.0",
93
"jquery-ui-touch-punch": "^0.2",
94
"jquery.scrollintoview": "^1.9",
95
"json-loader": "^0.5.7",
96
"less": "^4.1.1",
97
"less-loader": "^11.0.0",
98
"path-browserify": "^1.0.1",
99
"raw-loader": "^4.0.2",
100
"react": "^19.1.1",
101
"react-dom": "^19.1.1",
102
"react-helmet": "^6.1.0",
103
"react-refresh": "^0.17.0",
104
"react-test-renderer": "^19.1.0",
105
"sass": "^1.89.2",
106
"sass-loader": "^16.0.5",
107
"script-loader": "^0.7.2",
108
"source-map-loader": "^3.0.0",
109
"stream-browserify": "^3.0.0",
110
"style-loader": "^2.0.0",
111
"timeago": "^1.6.3",
112
"ts-jest": "^29.4.5",
113
"tsd": "^0.22.0",
114
"util": "^0.12.3",
115
"webpack-hot-middleware": "^2.26.1",
116
"webpack-path-rewriter": "^1.1.4"
117
}
118
}
119
120