-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "open-kakaotalk-electron",
"version": "0.0.1",
"description": "Open KakaoTalk made with electron",
"main": "init/index.js",
"scripts": {
"test": "node_modules/.bin/electron ./testing/index.js",
"start": "node_modules/.bin/electron ./init/index.js",
"dev:electron": "node_modules/.bin/electron ./init/dev.js",
"dev:rollup": "node_modules/.bin/rollup -c",
"dev": "npm run dev:rollup && npm run dev:electron",
"build": "npm run build:rollup && npm run build:electron",
"build:electron": "node index.js",
"build:rollup": "node_modules/.bin/rollup -c",
"postinstall": "node_modules/.bin/patch-package",
"fix": "node_modules/.bin/eslint --fix src/**/*"
},
"eslintConfig": {
"extends": "react-app"
},
"author": "storycraft",
"window": {
"id": "open-kakao-talk"
},
"domain": "openkakaotalk",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@rollup/plugin-typescript": "^8.2.0",
"@rollup/plugin-url": "^6.0.0",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"concurrently": "^6.0.0",
"electron-devtools-installer": "^3.1.1",
"eslint": "^7.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.1.0",
"mocha": "^8.3.0",
"patch-package": "^6.2.2",
"rollup": "^2.40.0",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"electron": "^11.3.0",
"nedb": "^1.8.0",
"node-kakao": "^4.0.6",
"react": "^17.0.1",
"react-async": "^10.0.1",
"react-dom": "^17.0.1",
"styled-components": "^5.2.1"
}
}