forked from spcl/dace-webclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.76 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
{
"name": "@spcl/sdfv",
"version": "1.1.5",
"description": "A standalone viewer for SDFGs",
"homepage": "https://github.com/spcl/dace-webclient",
"main": "out/index.js",
"types": "out/index.d.js",
"keywords": [
"sdfg",
"dace",
"dapp",
"spcl"
],
"engines": {
"node": ">=18.4.0"
},
"bugs": {
"url": "https://github.com/spcl/dace-webclient/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/spcl/dace-webclient.git"
},
"license": "BSD-3-Clause",
"scripts": {
"start": "npm run serve",
"clean": "rimraf dist && rimraf out",
"type-check": "tsc --noEmit",
"build-dev": "npm run clean && webpack --mode=development",
"watch": "npm run clean && webpack --watch --mode=development",
"serve": "npm run clean && webpack serve --mode=development",
"build-prod": "npm run clean && webpack --mode=production",
"postinstall": "patch-package",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/bootstrap": "^5.2.6",
"@types/dagre": "^0.7.48",
"@types/jest": "^29.5.3",
"@types/jquery": "^3.5.16",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.6.1",
"babel-loader": "^9.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"jest": "^29.6.1",
"postcss-loader": "^7.0.2",
"rimraf": "^3.0.2",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/runtime": "^7.20.7",
"assert": "^2.0.0",
"bootstrap": "^5.2.3",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"chart.js": "^4.1.2",
"chartjs-plugin-annotation": "^2.1.1",
"coffeequate": "^1.3.0",
"dagre": "^0.8.5",
"jquery": "^3.6.3",
"material-icons": "^1.13.1",
"material-symbols": "^0.6.0",
"mathjs": "^11.5.0",
"monaco-editor": "^0.44.0",
"patch-package": "^6.5.1",
"pixi-viewport": "4.24",
"pixi.js": "6.1.3",
"process": "^0.11.10",
"stream-browserify": "^3.0.0"
}
}