-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.58 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.58 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
{
"name": "dse-creator",
"version": "0.1.2",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"lint": "eslint src",
"test": "yarn lint",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist-win": "yarn compile && electron-builder --win --x64",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"dependencies": {
"@babel/preset-react": "^7.0.0",
"draft-js": "^0.11.0",
"electron-store": "^4.0.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"react": "16.x.x",
"react-beautiful-dnd": "^11.0.5",
"react-dom": "16.x.x",
"react-draft-wysiwyg": "^1.13.2",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-prop-types": "^1.0.4",
"rebass": "^4.0.5",
"redux": "^4.0.4",
"reselect": "^4.0.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.0",
"source-map-support": "^0.5.9",
"styled-components": "^4.3.2",
"webpack": "^4.16.5"
},
"devDependencies": {
"electron": "^6.0.4",
"electron-builder": "^21.2.0",
"electron-webpack": "^2.7.4",
"electron-webpack-eslint": "^3.0.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1"
},
"build": {
"appId": "com.stsstudios.dse-creator",
"productName": "DSE Creator"
},
"resolutions": {
"upath": "^1.0.5",
"react": "16.9.0",
"react-dom": "16.9.0"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "configs/webpack.renderer.additions.js"
}
}
}