-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.89 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
{
"name": "svd-image-compression-demo",
"version": "1.0.0",
"description": "Demonstration of low rank matrix approximations via singular value decomposition",
"main": "ts/app.tsx",
"scripts": {
"build": "webpack --config webpack.config.js --mode=production",
"build-all": "cd svd-image-compression-worker && wasm-pack build && npm run build",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"prettier:check": "prettier --check \"src/**/*.{ts,tsx,json}\" \"*.{js,json}\"",
"prettier:fix": "prettier --write \"src/**/*.{ts,tsx,json}\" \"*.{js,json}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/timjb/svd-image-compression-demo.git"
},
"author": "Tim Baumann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timjb/svd-image-compression-demo/issues"
},
"homepage": "https://github.com/timjb/svd-image-compression-demo",
"dependencies": {
"nouislider": "^14.7.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-slick": "^0.27.14",
"slick-carousel": "^1.8.1",
"svd-image-compression-worker": "file:svd-image-compression-worker/pkg"
},
"devDependencies": {
"@types/nouislider": "^9.0.10",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-slick": "^0.23.8",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "2.2.1",
"ts-loader": "^8.3.0",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"worker-loader": "^3.0.8"
}
}