-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.68 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
{
"name": "codeforcause-desktop",
"version": "0.0.0",
"description": "codeforcause-desktop",
"main": "init.js",
"author": {
"name": "Code For Cause Org",
"email": "team@codeforcause.org"
},
"repository": "https://github.com/codeforcauseorg/codeforcause-desktop",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.9.0",
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@mui-treasury/components": "^1.9.2",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"connected-react-router": "^6.8.0",
"firebase": "^8.2.3",
"history": "^4.10.1",
"immer": "^8.0.0",
"lodash": "^4.17.20",
"notistack": "^1.0.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.0",
"react-firebaseui": "^4.1.0",
"react-hot-loader": "^4.13.0",
"react-material-ui-form-validator": "^2.1.1",
"react-player": "^2.8.1",
"react-player-controls": "^1.1.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.2.0",
"react-swipeable-views": "^0.13.9",
"redux": "^4.0.5",
"redux-actions": "^2.6.5",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0",
"screenfull": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.7",
"chai": "^4.1.0",
"electron": "^8.2.2",
"electron-builder": "^22.4.1",
"electron-devtools-installer": "^3.0.0",
"electron-mocha": "^8.2.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-react": "^7.19.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-inject-string": "^1.1.2",
"gulp-sourcemaps": "^2.6.5",
"prettier": "^2.0.4",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"develop": "gulp develop",
"test": "electron-mocha --renderer -R spec --require @babel/register test/**/*.spec.js",
"lint": "eslint --no-ignore tasks app test *.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack:mac": "gulp pack-mac",
"pack:win": "gulp pack-win",
"pack:linux": "gulp pack-linux",
"private:format": "prettier gulpfile.js babel.config.js \"tasks/*.js\" \"app/**/*.js\" \"test/**/*.js\""
}
}