-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.01 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "llave",
"version": "0.6.0",
"license": "MIT",
"repository": "https://github.com/rwynn/llave",
"description": "An Electron shell for the Ironclad password manager",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"chmod": "gulp chmod",
"clean": "gulp clean",
"pack": "webpack -p --config webpack.config.js",
"appinstall": "npm --prefix ./build/app --no-bin-links -only=production install ./build/app",
"buildapp": "gulp buildapp && npm run appinstall && gulp postclean",
"asar": "asar pack build/app build/app.asar --unpack-dir go",
"package": "npm run pack && npm run buildapp && npm run asar",
"format": "prettier --jsx-bracket-same-line --single-quote --tab-width 4 --write \"*.js\" \"src/assets/**/*.scss\" \"src/**/*.js\""
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"asar": "^0.13.0",
"babel-loader": "^8.0.6",
"buffer": "^5.0.7",
"clipboard-js": "^0.3.5",
"css-loader": "^3.2.0",
"del": "^3.0.0",
"electron": "^7.2.4",
"express": "^4.13.4",
"gulp": "^3.9.1",
"gulp-cli": "^1.3.0",
"gulp-chmod": "^2.0.0",
"gulp-filter": "^5.0.1",
"gulp-rename": "^1.2.2",
"gulp-template": "^4.0.0",
"material-ui": "^0.18.7",
"node-sass": "^4.11.0",
"prettier": "^1.5.3",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-infinite": "^0.11.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-tap-event-plugin": "^2.0.1",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^3.8.2",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"csv": "^5.1.3",
"electron-storage": "^1.0.7",
"joi": "^10.6.0",
"lunr": "^2.1.2",
"sax": "^1.2.4",
"toml": "^2.3.2",
"ya-storage": "^1.0.3"
}
}