-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
84 lines (84 loc) · 2.82 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
{
"name": "secretin-app",
"version": "0.1.0",
"private": true,
"homepage": "https://secret-in.me",
"main": "electron.js",
"devDependencies": {
"@welldone-software/why-did-you-render": "^6.2.3",
"babel-eslint": "^10.0.3",
"electron": "^18.2.0",
"electron-packager": "^15.5.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-react-app": "^5.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-plugin-flowtype": "^4.6.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"gh-pages": "^1.0.0",
"node-sass": "^7.0.1",
"prettier": "^1.19.1",
"react-scripts": "4.0.3"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"classnames": "^2.2.6",
"copy-to-clipboard": "^3.2.0",
"craco": "^0.0.3",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mousetrap": "^1.6.3",
"prop-types": "^15.7.2",
"qrcode.react": "^1.0.0",
"react": "^16.0.0",
"react-bootstrap": "^0.32.4",
"react-dnd": "^5.0.0",
"react-dnd-html5-backend": "^5.0.1",
"react-dom": "^16.0.0",
"react-intl": "^6.2.1",
"react-overlays": "^0.8.3",
"react-redux": "^7.2.3",
"react-router-dom": "^5.1.2",
"react-virtualized": "^9.22.3",
"reselect": "^4.1.5",
"secretin": "^2.5.3",
"url-join": "^4.0.1",
"uuid": "^3.3.3"
},
"scripts": {
"deploy": "scripts/deploy.sh",
"start": "yarn build-css && yarn run watch-css & NODE_PATH=./src react-scripts start",
"build": "yarn build-css && NODE_PATH=./src node_modules/.bin/react-scripts build && ./scripts/post-build.sh",
"build-css": "node_modules/.bin/node-sass src/stylesheets/application.sass src/index.css",
"watch-css": "node_modules/.bin/node-sass src/stylesheets/application.sass src/index.css -w",
"__electron": "yarn build && node_modules/.bin/electron-packager ./ --arch=x64 --asar --overwrite --ignore=scripts --ignore=.gitignore --ignore=yarn.lock --ignore=.travis.yml --ignore=.*.zip --ignore=public --ignore=.nvmrc --ignore=.eslintrc.js --ignore=node_modules --ignore=src",
"electron": "yarn __electron -- --platform=all",
"electron:mac": "yarn __electron -- --platform=darwin --icon build/icons/icon-512x512.icns",
"dev-electron": "yarn build && electron .",
"lint": "node_modules/.bin/eslint src/",
"test": "yarn lint"
},
"eslintConfig": {
"extends": "./.eslintrc.js"
},
"resolutions": {
"electron-download": "4.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}