-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.52 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
{
"name": "dynamic-gazo",
"version": "1.1.0",
"main": "index.js",
"engine": {
"node": "8.7.0"
},
"repository": "git@github.com:daiz713/DynamicGazo.git",
"author": "daiiz <da.iz.mg@gmail.com>",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/run-s build:**",
"build:babel": "./node_modules/.bin/babel client/ --out-dir chrome/build/ --minified --source-maps false",
"build:browserify": "NODE_ENV=production ./node_modules/.bin/browserify -t [ babelify ] -t envify src/index.js -o chrome/build/bundle.js -v",
"build:package": "zip -r releases/chrome.zip chrome",
"watch": "./node_modules/.bin/run-p watch:**",
"watch:babel": "npm run build:babel -- --watch",
"watch:browserify": "NODE_ENV=production ./node_modules/.bin/watchify -t [ babelify ] -t envify src/index.js -o chrome/build/bundle.js -v",
"watch-dev": "./node_modules/.bin/run-p watch-dev:**",
"watch-dev:babel": "npm run build:babel -- --watch",
"watch-dev:browserify": "NODE_ENV=development ./node_modules/.bin/watchify -t [ babelify ] -t envify src/index.js -o chrome/build/bundle.js -v"
},
"dependencies": {
"@daiiz/dpi-aware-image": "^2.0.7",
"anchors-in-area": "^1.0.21",
"axios": "^0.18.1",
"img-svgize": "^1.0.0",
"png-dpi-reader-writer": "^0.1.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"envify": "^4.1.0",
"npm-run-all": "^4.0.2",
"watchify": "^3.11.1"
}
}