-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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": "minesweeper",
"productName": "Minesweeper",
"version": "1.2.0",
"description": "minesweeper the game",
"main": "index.js",
"scripts": {
"build": "rm static/js/*; babel --plugins transform-react-jsx raw --out-dir static/js",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "electron-builder install-app-deps",
"predist": "npm run build",
"dist": "electron-builder"
},
"build": {
"mac": {
"target": [
"dir"
],
"category": "public.app-category.utilities",
"icon": "static/assets/icon.png"
}
},
"author": "kiavashp",
"license": "ISC",
"dependencies": {
"electron-default-menu": "1.0.1",
"moment-duration-format": "2.2.2",
"react": "16.4.1",
"react-dom": "16.4.1",
"react-transition-group": "^2.4.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-react-jsx": "6.24.1",
"electron": "2.0.3",
"electron-builder": "20.20.4"
}
}