This repository has been archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "scratchboard",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@blueprintjs/core": "^3.19.1",
"@types/react": "^16.9.9",
"@types/react-dom": "^16.9.2",
"@types/react-redux": "^7.1.5",
"electron-redux": "^1.4.0",
"electron-store": "^5.0.0",
"react": "16.11.0",
"react-dom": "16.11.0",
"react-redux": "^7.1.1",
"redux": "^4.0.0",
"redux-promise-middleware": "^6.1.2",
"source-map-support": "^0.5.12",
"tailwindcss": "^1.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"electron-webpack": "^2.7.4",
"electron-webpack-ts": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-typescript": "^6.1.0",
"eslint-config-prettier": "^6.5.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"typescript": "^3.6.4",
"webpack": "^4.41.2"
},
"electronWebpack": {
"title": "ScratchBoard",
"whiteListedModules": [
"react-redux"
]
}
}