-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.15 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
{
"name": "bitbucket-file-uploader",
"version": "1.0.0-M1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/e-solutions-gmbh/bitbucket-file-uploader.git"
},
"scripts": {
"buildParcel": "parcel build src/*.ts --no-optimize --dist-dir build",
"buildResources": "rm -rf './dist' && mkdir dist && cp -r './build/.' './dist/chrome' && cp -r './manifest/chrome/.' './dist/chrome' && cp -r './res/.' './dist/chrome' && cp -r './build/.' './dist/ff' && cp -r './manifest/firefox/.' './dist/ff' && cp -r './res/.' './dist/ff'",
"build": "npm run buildParcel && npm run buildResources",
"watchChrome": "npm run buildResources && parcel watch src/*.ts --no-hmr -d dist/chrome",
"watchFirefox": "npm run buildResources && parcel watch src/*.ts --no-hmr -d dist/ff"
},
"devDependencies": {
"@types/chrome": "0.0.81",
"@types/dropzone": "^5.0.6",
"@types/ejs": "^3.1.5",
"parcel": "^2.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"dependencies": {
"dropzone": "^5.5.1",
"ejs": "^3.1.9"
}
}