-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "dithermark",
"type": "module",
"version": "1.0.0",
"description": "Web application to interactively demonstrate image dithering algorithms",
"main": "js/index.js",
"scripts": {
"start": "node server/index.js",
"watch": "webpack --config build/webpack.config.js --watch",
"build": "npm run build:html && npm run build:js",
"build:html": "node build/build.js",
"build:js": "webpack --config build/webpack.config.js",
"deploy": "npm run deploy:html && npm run deploy:js",
"deploy:html": "IS_PRODUCTION=true node build/build.js",
"deploy:js": "webpack --config build/webpack.production.config.js",
"seed:unsplash": "node scripts/unsplash-random-images.js",
"image-to-matrix": "node scripts/image-to-matrix.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/allen-garvey/dithermark.git"
},
"author": "Allen Garvey",
"license": "MIT",
"bugs": {
"url": "https://github.com/allen-garvey/dithermark/issues"
},
"homepage": "https://github.com/allen-garvey/dithermark#readme",
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.10",
"lodash.throttle": "^4.1.1",
"vue": "3.5.13"
},
"devDependencies": {
"@vue/compiler-sfc": "3.5.13",
"css-loader": "^7.1.2",
"express": "^4.21.2",
"memfs": "^4.17.0",
"mini-css-extract-plugin": "^2.9.2",
"multer": "^1.4.5-lts.1",
"sass": "^1.85.0",
"sass-loader": "^16.0.5",
"sharp": "^0.33.5",
"vue-loader": "17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}