This repository has been archived by the owner on Jan 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
48 lines (48 loc) · 1.86 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
{
"name": "KeePass4Web",
"version": "0.8.3",
"description": "Web KeePass application",
"main": "src/scripts/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "./node_modules/.bin/browserify -t browserify-css -t [ babelify --presets [ env react ] ] src/scripts/app.js -o public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist\\///g' public/scripts/bundle.js",
"watch": "./node_modules/.bin/watchify -t browserify-css -t [ babelify --presets [ env 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 ./node_modules/.bin/browserify -t browserify-css -p [ minifyify --no-map ] -t [ babelify --presets [ env react ] ] src/scripts/app.js -o public/scripts/bundle.js; sed -i 's/node_modules\\/bootstrap\\/dist\\///g' public/scripts/bundle.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lixmal/keepass4web"
},
"keywords": [
"keepass"
],
"author": "Viktor Liu",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/lixmal/keepass4web/issues"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"core-js": "^3.32.2",
"minifyify": "^7.3.5"
},
"dependencies": {
"bootstrap": "^3.4.1",
"classnames": "^2.3.2",
"clipboard-polyfill": "^2.8.6",
"jquery": "^3.7.1",
"react": "~15.7.0",
"react-dom": "~15.7.0",
"react-router": "3.0.0"
},
"browserify-css": {
"autoInject": true,
"minify": true,
"rootDir": "."
}
}