forked from allen-garvey/dithermark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "dithermark",
"version": "1.0.0",
"description": "Web application to interactively demonstrate image dithering algorithms",
"main": "js_src/index.js",
"sideEffects": [
"./js_src/app/vues/*.vue"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config build/webpack.config.js",
"deploy": "webpack --config build/webpack.production.config.js",
"watch": "webpack --config build/webpack.watch.config.js",
"dev": "php -S localhost:3000 -t public_html"
},
"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": {
"dithermark-vue-color": "2.2.0",
"vue": "3.4.29"
},
"devDependencies": {
"@vue/compiler-sfc": "3.4.29",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.77.5",
"sass-loader": "^14.2.1",
"terser-webpack-plugin": "^5.3.10",
"vue-loader": "17.4.2",
"vue-style-loader": "^4.1.3",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}