-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
108 lines (108 loc) · 3.52 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "macaulay2web",
"version": "3.9.1",
"homepage": "https://github.com/pzinn/Macaulay2Web",
"description": "Web app for Macaulay2",
"author": {
"name": "Paul Zinn-Justin",
"email": "[email protected]",
"url": "https://blogs.unimelb.edu.au/paul-zinn-justin/"
},
"contributors": [
{
"name": "Franziska Hinkelmann",
"email": "[email protected]"
},
{
"name": "Lars Kastner",
"email": "[email protected]"
},
{
"name": "Mike Stillman",
"email": "[email protected]"
},
{
"name": "Paul Zinn-Justin",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/pzinn/Macaulay2Web/issues"
},
"engine": {
"node": ">=10.0.0"
},
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.13.7",
"@types/express": "^4.17.11",
"@types/node": "^20.0.0",
"@types/ssh2": "^0.5.46",
"cookie": "^0.4.1",
"express": "^4.17.1",
"express-winston": "^3.4.0",
"html-entities": "^2.3.2",
"http-auth": "^3.2.4",
"multer": "^1.4.2",
"prismjs": "^1.25.0",
"serve-favicon": "^2.5.0",
"serve-index": "^1.9.1",
"serve-static": "^1.14.1",
"socket.io": "^4.6.1",
"socket.io-client": "^4.2.0",
"ssh2": "^1.4.0",
"winston": "^3.3.2"
},
"scripts": {
"postinstall": "./postinstall",
"build": "npm run lint && npm run format && npm run server && npm run client && npm run minimal && npm run css",
"server": "tsc",
"client": "webpack --env production",
"minimal": "webpack --env minimal",
"debug": "webpack --env debug",
"debug-minimal": "webpack --env debug --env minimal",
"css": "cd src/client/css; sass ../../../KaTeX/src/styles/katex.scss katex.css; cat katex.css VectorGraphics.css interface_common.css interface_minimal.css prism-M2.css | postcss -o ../../../public/minimal.css && cat material.indigo-deep_orange.min.css katex.css VectorGraphics.css interface_common.css interface_extra.css prism-M2.css | postcss -o ../../../public/index.css",
"start": "node dist/server/index.js",
"docker": "npm run build && npm start docker",
"local": "npm run build && npm start local",
"ssh": "npm run build && npm start ssh",
"stop": "kill `ps ax | grep 'node dist/server/index.js' | grep -v grep | awk '{print $1}'`",
"lint": "eslint src/*/*.ts --fix",
"format": "prettier --write src/*/*.ts",
"build:renderhelp": "webpack --config webpack-renderhelp.config.js",
"start:renderhelp": "node src/renderhelp/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:pzinn/Macaulay2Web.git"
},
"devDependencies": {
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.7",
"@babel/preset-env": "^7.13.5",
"@babel/preset-flow": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.2",
"babel-plugin-preval": "^5.0.0",
"babel-plugin-version-inline": "^1.0.0",
"cssnano": "^5.0.0-rc.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"prettier": "^2.2.1",
"raw-loader": "^4.0.2",
"sass": "^1.79.4",
"ts-loader": "^8.0.15",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-cli": "^4.5.0"
},
"license": "MIT",
"optionalDependencies": {
"puppeteer-core": "^5.5.0"
}
}