-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.69 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
{
"name": "ic-analyzer",
"version": "0.3.1",
"description": "Image Compression & Analysis Tool",
"author": "Kaciras <Kaciras@outlook.com>",
"license": "AGPL",
"repository": {
"type": "git",
"url": "https://github.com/Kaciras/ICAnalyzer.git"
},
"type": "module",
"scripts": {
"lint": "eslint --fix",
"compile-wasm": "emcc -O3 -msimd128 --bind -s ALLOW_MEMORY_GROWTH=1 -s ENVIRONMENT=web -s EXPORT_ES6=1 -s TEXTDECODER=2 -s FILESYSTEM=0 -I deps/butteraugli -I src src/butteraugli.cpp deps/butteraugli/butteraugli/butteraugli.cc -o lib/diff.js",
"dev": "webpack-cli serve",
"build": "webpack --env production --env report"
},
"dependencies": {
"@kaciras/utilities": "^1.0.3",
"@sentry/react": "^8.27.0",
"clsx": "^2.1.1",
"fflate": "^0.8.2",
"highcharts": "^11.4.8",
"icodec": "^0.5.2",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"ssim.js": "^3.5.0"
},
"devDependencies": {
"@kaciras/eslint-config-core": "^3.2.0",
"@kaciras/eslint-config-react": "^3.2.0",
"@kaciras/eslint-config-typescript": "^3.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@swc/core": "1.7.22",
"@types/emscripten": "^1.39.13",
"@types/react": "^18.3.5",
"@types/react-beautiful-dnd": "^13.1.8",
"@types/react-dom": "^18.3.0",
"css-loader": "^7.1.2",
"eslint": "^9.9.1",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.1",
"react-refresh": "^0.14.2",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}