forked from lukaswagner/uebungsrahmen
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.88 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
{
"name": "uebungsrahmen",
"version": "2.1.0",
"description": "Exercise framework. Originally build for CG lectures at HPI. Now rebuilt to be more versatile and just better.",
"repository": {
"type": "git",
"url": "git+https://github.com/lukaswagner/uebungsrahmen.git"
},
"license": "MIT",
"homepage": "https://github.com/lukaswagner/uebungsrahmen#readme",
"devDependencies": {
"@lukaswagner/web-ui": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"ansi-to-html": "^0.7.2",
"css-loader": "^6.7.1",
"electron": "^22.3.24",
"eslint": "^8.14.0",
"file-loader": "^6.2.0",
"highlight.js": "^11.5.1",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"katex": "^0.16.11",
"markdown-it": "^13.0.0",
"markdown-it-loader": "^0.7.0",
"markdown-it-texmath": "^0.9.7",
"node-polyfill-webpack-plugin": "^1.1.4",
"pug": "^3.0.2",
"rxjs": "^7.4.0",
"simple-pug-loader": "^0.2.1",
"style-loader": "^3.3.1",
"tar": "^6.2.1",
"tree-kill": "^1.2.2",
"ts-loader": "^9.3.0",
"typescript": "^4.6.4",
"webgl-operate": "^0.8.0",
"webpack": "^5.95.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-glsl-loader": "^1.0.1",
"yargs": "^17.4.1"
},
"scripts": {
"build": "webpack build --output-clean",
"start": "webpack serve --open",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"build-ui": "webpack build -c ./ui/webpack.config.js --output-clean",
"ui": "electron ui/ui.js",
"setup-examples": "cd examples && npm i --silent",
"postinstall": "npm run build-ui --silent && npm run setup-examples --silent"
}
}