-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 3.08 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
{
"name": "InteractiveShell",
"version": "2.0.0",
"description": "Build web apps for interactive command-line tools",
"contributors": [
{
"name": "Franziska Hinkelmann",
"email": "franziska.hinkelmann@gmail.com"
},
{
"name": "Lars Kastner",
"email": "kastner@math.fu-berlin.de"
},
{
"name": "Mike Stillman",
"email": "mikestillman1@gmail.com"
}
],
"engine": {
"node": ">=8.0.0"
},
"dependencies": {
"@types/chai": "^4.2.12",
"@types/express": "^4.17.8",
"@types/jquery": "3.5.1",
"@types/mathjax": "0.0.31",
"@types/mocha": "^5.2.6",
"@types/node": "^14.11.1",
"@types/socket.io": "^2.1.11",
"@types/socket.io-client": "^1.4.33",
"@types/ssh2": "^0.5.44",
"@typescript-eslint/parser": "^4.2.0",
"chai": "4.2.0",
"cookie": "^0.4.1",
"create-download-link": "1.1.0",
"dialog-polyfill": "0.4.3",
"eslint": "5.14.1",
"eslint-config-google": "0.12.0",
"express": "^4.17.1",
"express-winston": "3.1.0",
"forever": "0.14.1",
"get-selected-text": "1.0.2",
"http-auth": "3.2.3",
"jquery": "3.3.1",
"mocha": "8.1.3",
"rewire": "2.5.1",
"scroll-down": "2.0.0",
"serve-favicon": "2.1.7",
"serve-static": "1.7.2",
"set-caret-position": "3.0.0",
"sinon": "7.2.4",
"socket.io": "2.2.0",
"socket.io-client": "2.2.0",
"socketio-file-upload": "0.4.6",
"ssh2": "0.8.2",
"tslint": "5.4.3",
"webpack": "4.29.5",
"winston": "^3.3.2"
},
"scripts": {
"tsc": "tsc && tsc -p src/frontend",
"build": "npm run lint && npm run tsc && ./node_modules/.bin/webpack",
"start": "node src/dist/index.js",
"debug-start": "npm run tsc && webpack --config webpack.debug-config.js && npm start",
"basic": "npm run build && npm start M2 docker",
"local": "npm run build && npm start M2 local",
"twoMachines": "npm run build && npm start M2 ssh",
"twoMachines_forever": "npm run build && forever start -l $HOME/webm2.logs/forever.log -o $HOME/webm2.logs/out.log -e $HOME/webm2.logs/err.log --append src/dist/index.js M2 ssh",
"start_singular": "npm run build && npm start singular docker",
"basic_singular": "npm run build && npm start singular local",
"ssh_singular": "npm run build && npm start singular ssh",
"forever_singular": "npm run build && forever start -l /home/user/logs/forever.log -o /home/user/logs/out.log -e /home/user/logs/err.log --append src/dist/index.js singular ssh",
"stop": "kill `ps ax | grep Server | grep -v monitor | grep node | awk '{print $1}'`",
"test": "mocha -r ts-node/register src/tests/**/*.ts --reporter spec --timeout 6000",
"lint": "tslint -c tslint.json src/lib/*.ts src/startupConfigs/*.ts --fix && eslint ./public-source/ ./public/public-common/mathJaxConfig.js --fix"
},
"repository": {
"type": "git",
"url": "git@github.com:fhinkel/tryM2.git"
},
"eslintConfig": {
"extends": "google",
"parser": "@typescript-eslint/parser"
},
"devDependencies": {
"ts-node": "^9.0.0",
"typescript": "^4.0.3",
"webpack-cli": "^3.2.3"
}
}