-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 KB
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
{
"name": "try-electron",
"version": "0.0.1",
"description": "Try Electron (https://electron.atom.io)",
"main": "index.js",
"engines": {
"node": ">7.0.0"
},
"scripts": {
"dev": "webpack --watch",
"build": "webpack",
"test": "ava",
"start": "(which yarn && yarn build || npm run build); electron ."
},
"repository": {
"type": "git",
"url": "git@github.com:taxigy/try-electron.git"
},
"keywords": [
"electron",
"javascript",
"react",
"node",
"webkit",
"jss"
],
"author": "Rishat Muhametshin <rishatmuhametshin@gmail.com> (http://rishat.us/)",
"license": "MIT",
"dependencies": {
"electron": "^1.6.6",
"jss": "^7.1.1",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"webpack": "^2.5.1"
},
"babel": {
"presets": [
"stage-0",
"es2016",
"react"
]
}
}