This repository has been archived by the owner on Sep 25, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 136
/
package.json
118 lines (118 loc) · 3.9 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "xde-electron",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env XDE_NPM_START=1 npm run _start",
"rebuild": "gulp rebuild:force",
"start-hot": "cross-env HOT=1 npm run start",
"start-staging": "cross-env XDE_NPM_START=1 EXPO_STAGING=1 npm run _start",
"start-staging-hot": "cross-env HOT=1 npm run start-staging",
"start-local": "cross-env XDE_NPM_START=1 EXPO_LOCAL=1 npm run _start",
"start-local-hot": "cross-env HOT=1 npm run start-local",
"start-proxy": "cross-env HTTP_PROXY=http://localhost.charlesproxy.com:8888 HTTPS_PROXY=http://localhost.charlesproxy.com:8888 npm start",
"_start": "concurrently --kill-others --raw \"npm run webpack\" \"npm run app\"",
"app": "gulp rebuild && npm run electron",
"electron": "electron ./app",
"webpack": "node scripts/webpack",
"webpack-dev": "webpack -w --env.dev",
"webpack-hot": "webpack --env.dev && cross-env BABEL_ENV=hot webpack-dev-server -w --env.hmr --env.dev",
"build": "cross-env NODE_ENV=production webpack --env.prod",
"lint": "eslint src",
"dist": "gulp clean && npm run build && gulp release",
"mac": "gulp clean && npm run build && gulp release:mac",
"test-mac": "gulp clean && npm run build && gulp test:mac",
"win": "gulp clean && npm run build && gulp release:windows",
"linux": "gulp clean && npm run build && gulp release:linux",
"flow-typed": "flow-typed install --flowVersion=\"$(flow version | awk '{ print $9 }')\" && cd app/ && npm run flow-typed"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "expo",
"repo": "xde"
}
],
"asar": false,
"appId": "host.exp.xde",
"dmg": {
"contents": [
{
"x": 410,
"y": 168,
"type": "link",
"path": "/Applications"
},
{
"x": 104,
"y": 168,
"type": "file"
}
]
},
"mac": {
"identity": "650 Industries, Inc. (C8D8QTF339)",
"category": "public.app-category.developer-tools"
},
"linux": {
"category": "Development",
"target": [
"AppImage"
]
},
"nsis": {
"perMachine": true
}
},
"devDependencies": {
"@ccheever/crayon": "^5.0.0",
"@expo/json-file": "^8.0.0",
"@expo/spawn-async": "^1.2.8",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-optimize": "^1.0.1",
"concurrently": "^3.1.0",
"cross-env": "^3.0.0",
"electron": "~1.6.0",
"electron-builder": "14.4.0",
"electron-devtools-installer": "^2.1.0",
"electron-rebuild": "^1.5.6",
"eslint": "^4.12.0",
"eslint-config-universe": "^1.0.6",
"flow-bin": "^0.38.0",
"flow-typed": "^2.0.0",
"getenv": "^0.7.0",
"gulp": "^4.0.0",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^2.4.1",
"gulp-watch": "^4.3.6",
"gulplog": "^1.0.0",
"json-loader": "^0.5.4",
"mkdirp": "^0.5.1",
"node-loader": "^0.6.0",
"prettier": "~1.7.4",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-hot-loader": "3.0.0-beta.6",
"rimraf": "^2.5.2",
"source-map-support": "^0.4.11",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0",
"webpack-node-externals": "^1.5.4"
}
}