-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
{
"name": "PROJECT",
"version": "0.1.0",
"description": "electron-quick-start",
"main": "index.js",
"types": "index.d.ts",
"private": true,
"repository": "https://github.com/maichong/electron-quick-start",
"author": "Liang <[email protected]> (https://github.com/liangxingchen)",
"license": "MIT",
"scripts": {
"eslint": "eslint --ext .ts,.tsx ./",
"eslint:fix": "eslint --ext .tsx,.ts --fix ./",
"prettier": "prettier -l * src/** scss/**",
"prettier:fix": "prettier --write -l * src/** scss/**",
"fix": "yarn prettier:fix",
"start": "yarn build && electron ./dist/main.js",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && npm run eslint && npm run prettier"
}
},
"build": {
"appId": "it.maichong.PROJECT",
"productName": "PROJECT"
},
"electronWebpack": {
"renderer": {
"webpackConfig": "webpack.renderer.js"
}
},
"dependencies": {
"source-map-support": "^0.5.16"
},
"devDependencies": {
"@babel/preset-react": "^7.7.0",
"@redux-saga/types": "^1.1.0",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.9.4",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/redux": "^3.6.0",
"@types/redux-actions": "^2.6.1",
"@types/redux-logger": "^3.0.7",
"@types/seamless-immutable": "^7.1.11",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"babel-eslint": "^10.0.3",
"bootstrap": "^4.3.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-alloy": "^3.1.1",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux-actions": "^2.6.5",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"sass-loader": "^8.0.0",
"seamless-immutable": "^7.1.4",
"typescript": "^3.7.2",
"webpack": "^4.41.2"
}
}