-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.65 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
{
"name": "topicmap",
"version": "1.0.0",
"description": "topic map viewer",
"repository": {
"type": "git",
"url": "git+https://github.com/lukaswagner/topicmap.git"
},
"author": "Lukas Wagner",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@lukaswagner/csv-parser": "^0.2.5",
"@lukaswagner/lasso": "^0.3.3",
"@lukaswagner/web-ui": "^1.8.1",
"@types/gl-matrix": "^3.2.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"css-loader": "^6.5.1",
"eslint": "^8.8.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"pngjs": "^6.0.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"rxjs": "^6.6.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webgl-operate": "^0.7.5",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3",
"webpack-glsl-loader": "^1.0.1",
"webpack-merge": "^5.8.0",
"webpack-remove-empty-scripts": "^0.7.3",
"worker-loader": "^3.0.8"
},
"scripts": {
"start": "webpack serve --config webpack.dev.js",
"build": "webpack build --config webpack.prod.js",
"watch": "webpack build --config webpack.prod.js --watch",
"analyze": "webpack serve --config webpack.prod.js --env analyze",
"lint": "eslint ./source",
"lint-fix": "eslint ./source --fix",
"interface": "tsc --declaration --emitDeclarationOnly --declarationDir ./interface ./source/code/frontend/interface.ts"
}
}