-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"name": "supported-formats",
"version": "1.0.0",
"description": "html page that transform images in different formats (not understandable by the browser), transform each of them to png and show a table with all these transformations.",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run bundle",
"bundle": "browserify dist/index.js -o static/bundle.js",
"copy": "cp -r ../../spec/assets/fn.png ../../spec/assets/magick.* src/static/* static",
"clean": "rm -rf dist static",
"start": "npm run clean && npm run build && npm run copy && npm run watch-all",
"server": "http-server static",
"watch-all": "concurrently 'npm run watch-build' 'npm run watch-server' ",
"watch-build": "onchange -v 'src/**/*' -- npm run build",
"watch-server": "onchange -i -k -v 'static/**/*' -- npm run server"
},
"keywords": [],
"author": "sg",
"license": "ISC",
"dependencies": {
"imagemagick-browser": "0.0.3",
"p-map": "^2.0.0",
"react": "^16.6.1",
"react-dom": "^16.6.1",
"typestyle": "^2.0.1",
"wasm-imagemagick": "file:../.."
},
"devDependencies": {
"http-server": "^0.11.1",
"onchange": "^5.1.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"browserify": "^16.2.3",
"concurrently": "^4.0.1",
"typescript": "^3.1.6"
}
}