-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.68 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
{
"name": "graphameleon",
"description": "Collect and semantize Web navigation traces from a Web Browser.",
"version": "2.1.0",
"homepage": "https://github.com/Orange-OpenSource/graphameleon",
"author": "Benjamin STACH",
"repository": {
"type": "git",
"url": "https://github.com/Orange-OpenSource/graphameleon"
},
"scripts": {
"dev": "webpack --watch --mode development --env firefox",
"dev:chrome": "webpack --watch --mode development --env chrome",
"dev:edge": "webpack --watch --mode development --env chrome",
"start": "webpack --mode production --env firefox",
"start:chrome": "webpack --mode production --env chrome",
"start:edge": "webpack --mode production --env chrome",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -r ./dist"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^8.3.0",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@comake/rmlmapper-js": "^0.2.5",
"md5": "^2.3.0",
"n3": "^1.16.4",
"papaparse": "^5.4.1",
"path-browserify": "^1.0.1",
"polyfill": "^0.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-force-graph-3d": "^1.22.2",
"stream-browserify": "^3.0.0",
"three-spritetext": "^1.8.1",
"webextension-polyfill": "^0.10.0"
}
}