-
-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
128 lines (128 loc) · 3.37 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "Swifty",
"version": "0.6.14",
"description": "Modern, Lightweight, Fast and Free Password Manager",
"repository": "https://github.com/swiftyapp/swifty.git",
"dependencies": {
"@reduxjs/toolkit": "^1.9.7",
"@swiftyapp/cryptor": "^1.1.2",
"classnames": "^2.3.1",
"electron-log": "^5.0.0",
"electron-unhandled": "^4.0.1",
"electron-updater": "^6.1.4",
"electron-util": "^0.17.2",
"fs-extra": "^11.1.1",
"generate-password": "^1.7.1",
"googleapis": "^128.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"mousetrap": "^1.6.5",
"nth-check": "^2.1.1",
"parse-domain": "^7.0.1",
"password-validator": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.3",
"react-tagsinput": "^3.20.3",
"redux": "^4.2.1",
"redux-thunk": "^2.4.2",
"remove": "^0.1.5",
"shortid": "^2.2.16",
"speakeasy": "^2.0.0",
"universal-analytics": "^0.5.3"
},
"scripts": {
"lint": "npx eslint --color src",
"start": "NODE_ENV=development bozon start",
"test": "yarn lint && yarn test:unit && yarn test:features",
"test:unit": "NODE_ENV=test npx jest test/units",
"test:features": "NODE_ENV=test bozon test test/features"
},
"author": {
"name": "Alex Chaplinsky",
"email": "[email protected]"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@electron/notarize": "^2.1.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"bozon": "^1.3.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"dotenv": "^16.3.1",
"dotenv-webpack": "^8.0.1",
"electron": "^27.0.2",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.4.3",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ps-node": "^0.1.6",
"react-svg-loader": "^3.0.3",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"spectron": "^19.0.0",
"style-loader": "^3.3.3",
"webpack": "^5.76.0"
},
"resolutions": {
"node-forge": ">=1.3.1",
"nth-check": ">=2.0.1"
},
"build": {
"appId": "com.electron.swifty",
"afterSign": "scripts/notarize.js",
"fileAssociations": [
{
"ext": "swftx",
"role": "None",
"icon": "build/fileicon.icns",
"mimeType": "application/vnd.swftx"
}
],
"publish": [
{
"provider": "github",
"owner": "swiftyapp",
"repo": "swifty"
}
],
"win": {
"icon": "build/icon.ico",
"publisherName": "Developer ID Application: Oleksandr Chaplinsky (UFBL3F444A)",
"verifyUpdateCodeSignature": false,
"target": [
"nsis"
]
},
"linux": {
"category": "Utility",
"icon": "build/icon.png",
"target": [
"deb",
"rpm",
"AppImage"
]
},
"mac": {
"icon": "build/icon.icns",
"category": "public.app-category.utilities",
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
"dmg",
"zip",
"mas"
]
}
}
}