forked from transistorsoft/background-geolocation-console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (52 loc) · 1.35 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
{
"name":"background-geolocation-console",
"version":"0.1.0",
"description":"A field-testing/analysis server & web-app for the Background Geolocation plugin",
"repository":"https://github.com/transistorsoft/background-geolocation-console",
"main":"js/app.js",
"dependencies":{
"body-parser":"^1.13.3",
"classnames":"^2.1.3",
"express":"^4.13.3",
"flux":"^2.1.1",
"fluxxor":"^1.7.3",
"google-map-react":"^0.4.1",
"keymirror":"~0.1.0",
"react":"0.14.7",
"material-ui":"^0.14.4",
"moment":"^2.10.6",
"object-assign":"^1.0.0",
"react-dom":"0.14.3",
"react-datagrid":"~2.0.0",
"react-flexbox":"3.0.0",
"react-google-maps":"4.2.0",
"history":"~1.17.0",
"react-router":"~1.0.2",
"react-tap-event-plugin":"^0.2.1",
"sqlite3":"~3.1.1"
},
"devDependencies":{
"babelify":"^6.3.0",
"browserify":"^6.2.0",
"envify":"^3.0.0",
"reactify":"^0.17.1",
"uglify-js":"~2.4.15",
"watchify":"^2.1.1"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.js",
"build": "browserify . -t [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js",
"test": "jest"
},
"author": "Chris Scott, Transistor Software",
"browserify": {
"transform": [
"reactify",
"babelify",
"envify"
]
},
"jest": {
"rootDir": "./js"
}
}