-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.28 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
{
"name": "mozzie",
"version": "1.0.0",
"main": "src/main.js",
"repository": "[email protected]:khanguslee/mozzie.git",
"author": "khanguslee <[email protected]>",
"license": "MIT",
"devDependencies": {
"electron": "^7.1.8",
"electron-webpack": "^2.7.4",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-react": "^7.17.0",
"husky": ">=1",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"lint-staged": ">=8",
"prettier": "1.19.1",
"ts-loader": "^6.2.1",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"scripts": {
"start": "electron-webpack dev",
"build": "electron-webpack"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,ts,js,css,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"mqtt": "^3.0.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.1.2",
"source-map-support": "^0.5.16"
},
"electronWebpack": {
"main": {
"sourceDirectory": "src/"
},
"renderer": {
"sourceDirectory": "src/view"
}
}
}