-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.47 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
{
"name": "fsae-da-web",
"description": "A cross-platform solution for the visualization of automotive data.",
"version": "0.1.0",
"license": "Modified MIT",
"productName": "FSAE-DA-WEB",
"homepage": "./",
"main": "./src/index.js",
"private": true,
"author": {
"email": "genzo.namikawa@jacks.sdstate.edu",
"name": "Genzo Namikawa"
},
"build": {
"appId": "com.electron.fsae-da-web",
"files": [
"build/**/*",
"node_modules/**/*",
"src/electron/static"
],
"directories": {
"buildResources": "public",
"output": "dist"
}
},
"scripts": {
"react": "cross-env BROWSER=none react-scripts start",
"rbuild": "react-scripts build",
"electron": "electron-webpack dev",
"compile": "electron-webpack",
"ebuild": "npm run compile && electron-builder",
"ebuild:dir": "npm run ebuild --dir -c.compression=store -c.mac.identity=null",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"electronWebpack": {
"title": true,
"main": {
"sourceDirectory": "src/electron/main"
},
"renderer": {
"sourceDirectory": "src/electron/renderer"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.1.1",
"c3": "^0.7.15",
"electron-is-dev": "^1.2.0",
"electron-packager": "^14.2.1",
"electron-store": "^5.1.1",
"evergreen-ui": "^4.27.4",
"is-electron": "^2.2.0",
"lodash": "^4.17.15",
"react": "^16.13.1",
"react-c3-component": "^2.0.0",
"react-c3js": "^0.1.20",
"react-color": "^2.18.1",
"react-dom": "^16.13.1",
"react-grid-layout": "^0.18.3",
"react-rnd": "^10.1.10",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"source-map-support": "^0.5.19"
},
"devDependencies": {
"cross-env": "^7.0.2",
"electron": "^7.2.4",
"electron-builder": "^22.6.0",
"electron-reload": "^1.5.0",
"electron-webpack": "^2.8.2",
"nodemon": "^2.0.3",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"wait-on": "^4.0.2"
}
}