-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
62 lines (62 loc) · 2.03 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
{
"name": "@thing-description-playground/web",
"author": "Eclipse Thingweb <[email protected]> (https://thingweb.io/)",
"license": "EPL-2.0 OR W3C-20150513",
"version": "2.0.0",
"description": "Web GUI for the Eclipse Thingweb Playground",
"homepage": "https://github.com/eclipse-thingweb/playground#readme",
"bugs": {
"url": "https://github.com/eclipse-thingweb/playground/issues"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/eclipse-thingweb/playground.git",
"directory": "packages/web"
},
"scripts": {
"build": "node external-scripts/generate-paths.js && webpack --mode production",
"dev": "webpack serve --mode development",
"serve": "node server/server.js",
"examples": "node external-scripts/generate-paths.js",
"test": "npx playwright test --project=chromium --project=firefox",
"test-full": "npx playwright test"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@playwright/test": "^1.39.0",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"html-webpack-plugin": "^5.5.3",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^2.7.6",
"monaco-editor-webpack-plugin": "^7.1.0",
"nodemon": "^3.0.1",
"sass": "^1.64.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"webpack": "^5.95.0",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@thingweb/aas-aid": "^1.0.2",
"@thingweb/async-api-converter": "^1.0.0",
"@thingweb/json-spell-checker": "^1.0.0",
"@thingweb/open-api-converter": "^1.0.0",
"@thingweb/td-utils": "^1.0.0",
"d3": "^3.5.17",
"d3-tip": "^0.6.7",
"express": "^4.21.2",
"monaco-editor": "^0.40.0",
"papaparse": "^5.4.1",
"string-direction": "^0.1.2",
"svg-crowbar": "^0.7.0",
"vega": "^5.22.1",
"vega-embed": "^6.21.0"
}
}