-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.29 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
{
"name": "socket.client",
"version": "1.0.0",
"description": "An Electron WebSocket Client",
"main": "./dist/main.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"git add"
]
},
"scripts": {
"dev": "npm-run-all -p dev:react electron:serve",
"dev:electron": "cross-env NODE_ENV=development webpack --config webpack/electron.webpack.js --mode development && electron .",
"dev:react": "cross-env NODE_ENV=development webpack-dev-server --config webpack/react.webpack.js --mode development",
"electron:serve": "wait-on http-get://localhost:4000/ && npm run dev:electron"
},
"keywords": [],
"author": "Mateus Henrique Nascimento Soares",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"@types/electron-devtools-installer": "^2.2.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/prismjs": "^1.9.0",
"@types/styled-components": "^5.1.0",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"babel-loader": "^8.1.0",
"cross-env": "^7.0.2",
"electron": "^8.2.2",
"electron-devtools-installer": "^3.1.0",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.1",
"eslint-plugin-standard": "^4.0.1",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"lint-staged": "10.2.11",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.5",
"wait-on": "^5.0.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"electron-store": "^5.2.0",
"json-schema-typed": "^7.0.3",
"polished": "^3.6.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"prismjs": "^1.20.0",
"styled-components": "^5.1.1"
}
}