-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.43 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.43 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "store-system",
"version": "0.1.0",
"description": "Store System",
"author": "Stenio Wagner",
"private": true,
"main": "public/electron.js",
"homepage": "./",
"repository": "https://github.com/steniowagner/store-system",
"keywords": [
"Electron",
"store",
"React",
"Redux",
"Redux-Saga",
"MySQL",
"Sequelize"
],
"dependencies": {
"@material-ui/core": "^3.0.3",
"@material-ui/icons": "^3.0.1",
"@material-ui/lab": "^3.0.0-alpha.18",
"classnames": "^2.2.6",
"formik": "^1.3.0",
"moment": "^2.22.2",
"mysql2": "^1.6.4",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"react-swipeable-views": "^0.13.0",
"react-transition-group": "^2.5.2",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"seamless-immutable": "^7.1.4",
"sequelize": "^4.41.2",
"shorthash": "^0.0.2",
"styled-components": "^3.3.3",
"typeface-roboto": "^0.0.54",
"yup": "^0.26.6"
},
"scripts": {
"dev": "concurrently \"npm run start\" \"wait-on http://localhost:3000 && npm run electron-dev .\"",
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"dist": "electron-builder",
"pack": "electron-builder --dir",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"electron-dev": "node public/back-end/electron-wait-react",
"postinstall": "electron-builder install-app-deps",
"electron": "electron .",
"flow": "flow"
},
"build": {
"appId": "com.github.steniowagner",
"directories": {
"buildResources": "resources"
},
"win": {
"target": "nsis"
},
"productName": "My Store"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"babel-plugin-module-resolver": "^3.1.1",
"concurrently": "^4.1.0",
"electron": "^2.0.5",
"electron-builder": "^20.38.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-import-resolver-babel-module": "^4.0.0",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"flow-bin": "^0.77.0",
"prettier-eslint": "^8.8.2",
"reactotron-react-js": "^2.1.1",
"reactotron-redux": "^2.1.0",
"reactotron-redux-saga": "^2.1.0",
"sequelize-cli": "^5.3.0",
"wait-on": "^3.2.0"
}
}