This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.77 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
{
"name": "electron-react-redux-boilerplate",
"version": "0.0.0",
"description": "electron-react-redux-boilerplate",
"main": "init.js",
"author": {
"name": "Pedro Henrique Rodrigues",
"email": "pedrohenriquerls@gmail.com"
},
"repository": "",
"license": "MIT",
"dependencies": {
"@babel/register": "^7.0.0",
"@material-ui/core": "^4.3.2",
"@material/layout-grid": "^3.1.0",
"connected-react-router": "^5.0.1",
"history": "^4.6.3",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.2",
"react-router": "^4.1.2",
"redux": "^4.0.0",
"redux-actions": "^2.2.1",
"redux-localstorage": "^0.4.1",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"browser-sync": "^2.23.6",
"chai": "^4.1.0",
"electron": "^9.4.0",
"electron-builder": "^20.0.7",
"electron-devtools-installer": "^2.2.4",
"electron-mocha": "^6.0.1",
"eslint": "^5.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.1.0",
"npm-run-all": "^4.0.1",
"prettier": "^1.13.7",
"redux-mock-store": "^1.2.2",
"rimraf": "^2.5.4"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"develop": "npm run private:compile -- --source-maps true && run-p -r private:watch private:serve",
"test": "electron-mocha --renderer -R spec --require @babel/register test/**/*.spec.js",
"lint": "eslint --no-ignore scripts app test *.js",
"format": "npm run private:format -- --write",
"check-format": "npm run private:format -- --list-different",
"pack": "run-s private:clean private:compile private:build:all",
"pack:mac": "run-s private:clean private:compile private:build:mac",
"pack:win": "run-s private:clean private:compile private:build:win",
"pack:linux": "run-s private:clean private:compile private:build:linux",
"private:build:all": "electron-builder -mwl",
"private:build:mac": "electron-builder --mac",
"private:build:win": "electron-builder --win",
"private:build:linux": "electron-builder --linux",
"private:watch": "npm run private:compile -- --source-maps true --watch --skip-initial-build",
"private:serve": "babel-node scripts/serve.js",
"private:compile": "babel app/ --copy-files --out-dir build",
"private:clean": "rimraf build",
"private:format": "prettier \"babel.config.js\" \"scripts/*.js\" \"app/**/*.js\" \"test/**/*.js\""
}
}