-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.87 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
{
"name": "gdprshare",
"version": "0.8.0",
"description": "share files according to gdpr rules",
"main": "src/scripts/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "browserify -t browserify-css -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] src/scripts/app.js -o public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist\\///g' public/scripts/bundle.js",
"build": "NODE_ENV=production browserify -t browserify-css -t [ babelify --presets [ @babel/preset-env @babel/preset-react ] ] -p [ uglifyify --no-sourcemap ] src/scripts/app.js | terser --compress --mangle > public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist\\///g' public/scripts/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lixmal/gdprshare"
},
"keywords": [
"gdpr",
"fileshare"
],
"author": "Viktor Liu",
"license": "MIT",
"bugs": {
"url": "https://github.com/lixmal/gdprshare/issues"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.23.3",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"terser": "^5.29.1",
"uglifyify": "^5.0.2"
},
"dependencies": {
"@primer/octicons-react": "^9.6.0",
"bootstrap": "^4.6.2",
"bs-custom-file-input": "^1.3.4",
"classnames": "^2.5.1",
"clipboard-polyfill": "^2.8.6",
"qrcode.react": "^3.2.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-modal": "^3.16.1",
"react-router-dom": "^5.3.4",
"react-tooltip": "^4.5.1"
},
"browserify-css": {
"autoInject": true,
"minify": true,
"rootDir": "."
}
}