-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "my-dictionary",
"productName": "my-dictionary",
"version": "1.0.0",
"main": "dist/main/index.js",
"license": "MIT",
"author": "Jung-Hyun",
"scripts": {
"build": "webpack",
"watch": "webpack --watch",
"start": "electron .",
"package": "electron-packager ./ --platform=darwin --arch=x64 --out=out --icon=./icon.icns --overwrite"
},
"repository": "https://github.com/junghyun87/my-dictionary",
"keywords": [
"Dictionary",
"Electron"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.23.1",
"electron": "^1.8.4",
"electron-packager": "^12.0.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.0"
},
"dependencies": {
"mousetrap": "^1.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-mousetrap": "^0.2.0",
"react-router": "^3.2.0",
"react-sortable-hoc": "^0.6.8",
"react-spinners": "^0.3.2"
}
}