-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
{
"name": "electron-react",
"version": "1.1.0",
"description": "a awesome markdown editor",
"main": "./app/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --debug",
"server": "webpack-dev-server --inline --hot --progress --colors",
"build": "webpack",
"pack": "build --dir",
"dist": "build"
},
"keywords": ["react", "electron"],
"author": "Cacivy",
"license": "ISC",
"dependencies": {
"codemirror": "^5.19.0",
"highlight.js": "^9.8.0",
"marked": "^0.3.6",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-modal": "^1.5.2"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"electron": "^1.4.6",
"electron-builder": "^8.5.3",
"electron-prebuilt": "^1.4.6",
"extract-text-webpack-plugin": "^1.0.1",
"open-browser-webpack-plugin": "0.0.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"build": {
"productName": "Mder",
"win": {
"icon": "./app/static/Mder.ico"
},
"mac": {
"category": "public.app-category.text-editor",
"icon": "./app/static/Mder.icns"
}
}
}