-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "orthodox-presenter",
"version": "0.0.1",
"license": "MIT",
"description": "Free and open-source web app for use in Coptic Orthodox church services",
"repository": "https://github.com/dbishai/orthodox-presenter",
"main": "js/app.js",
"dependencies": {
"babel-cli": ">=6.3.26",
"classnames": "^2.1.3",
"create-react-class": "^15",
"flux": ">=2.0.1",
"js-cookie": "^2.2.0",
"keymirror": ">0.1.0",
"object-assign": ">1.0.0",
"rc-slider": "^8.3.1",
"react": "^15",
"react-dates": "^12.6.0",
"react-dom": "^15"
},
"devDependencies": {
"browserify": ">=6.2.0",
"envify": ">=3.0.0",
"react-toggle": ">=2.0.1",
"react-addons-shallow-compare": ">=0.14.7",
"reactify": ">=0.15.2",
"uglify-js": ">=2.4.15",
"watchify": ">=2.1.1",
"prop-types": ">=15.5.9"
},
"scripts": {
"start": "watchify -o js/bundle.js -v -d js/app.js",
"build": "browserify . -g [envify --NODE_ENV production] | uglifyjs -cm > js/bundle.min.js"
},
"author": "David Bishai",
"browserify": {
"transform": [
"reactify",
"envify"
]
}
}