-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.7 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
{
"name": "KeePass4Web",
"version": "1.0.0",
"description": "Web KeePass application",
"main": "js/scripts/app.js",
"scripts": {
"dev": "./node_modules/.bin/browserify -t browserify-css -t babelify js/scripts/app.js -o public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist/assets/g' public/scripts/bundle.js",
"watch": "./node_modules/.bin/watchify -t browserify-css -t babelify js/scripts/app.js -o public/scripts/bundle.js & sed -i 's/node_modules\\/bootstrap\\/dist/assets/g' public/scripts/bundle.js",
"build": "NODE_ENV=production ./node_modules/.bin/browserify -t browserify-css -p [ minifyify --no-map ] -t babelify js/scripts/app.js -o public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist/assets/g' public/scripts/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lixmal/keepass4web-rs"
},
"keywords": [
"keepass"
],
"author": "Viktor Liu",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lixmal/keepass4web-rs/issues"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.24.6",
"@babel/preset-react": "^7.25.9",
"babelify": "^10.0.0",
"browserify": "^17.0.1",
"browserify-css": "^0.15.0",
"core-js": "^3.39.0",
"minifyify": "^7.3.5"
},
"dependencies": {
"bootstrap": "^3.4.1",
"classnames": "^2.5.1",
"jquery": "^3.7.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-router-dom": "^6.23.1"
},
"browserify-css": {
"autoInject": true,
"minify": true,
"rootDir": "."
}
}