-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.92 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
56
57
58
59
60
61
62
{
"name": "app",
"version": "1.0.0",
"description": "An example of all the Imagick functions. Or at least most of them. The site is hosted at http://phpimagick.com/",
"main": "index.js",
"directories": {
"doc": "doc",
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --open",
"build:dev": "webpack --mode development",
"build:dev:watch": "webpack --watch --mode development",
"build:prod": "webpack --mode production",
"build:prod:watch": "webpack --watch --mode production",
"stats": "webpack --profile",
"sass:build:dev": "sass public/scss/site.scss public/css/site.css",
"sass:build:prod": "sass public/scss/site.scss public/css/site.css --style=compressed",
"sass:build:watch": "sass public/scss/site.scss public/css/site.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danack/Imagick-demos.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Danack/Imagick-demos/issues"
},
"homepage": "https://github.com/Danack/Imagick-demos#readme",
"devDependencies": {
"@types/jquery": "^3.5.30",
"compression-webpack-plugin": "^3.1.0",
"css-loader": "^3.6.0",
"raw-loader": "^4.0.2",
"sass": "^1.77.2",
"script-loader": "^0.7.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.3.0",
"timestamp-webpack-plugin": "^0.2.3",
"ts-loader": "^6.2.2",
"typescript": "^3.9.10",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"argv": "0.0.2",
"command-line-args": "^5.1.1",
"preact": "^10.22.0",
"promise-polyfill": "^8.3.0",
"rc-slider": "^9.7.5",
"react-colorful": "^5.5.1",
"react-dropdown": "^1.9.2",
"react-input-range": "^1.3.0"
},
"optionalDependencies": {
"fsevents": "^2.1.2"
}
}