-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.04 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.04 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
{
"name": "birds_of_a_feather",
"version": "1.0.0",
"description": "Healthy for you, Health for the planet",
"private": true,
"author": "Hong Chou Yu, Joann Im, Keith Wong, Ryan McChesney",
"keywords": [
"Health",
"Environment",
"Society",
"concerns",
"allergy"
],
"scripts": {
"dev:runios": "react-native run-ios start",
"dev:bundlemain": "curl http://localhost:8081/index.ios.bundle -o ./ios/bof/main.jsbundle",
"dev:bitriseBundle": "curl https://www.bitrise.io/app/e0598ea9f6e89e02/build/index.ios.bundle -o ./ios/bof/main.jsbundle",
"dev:runfull": "npm run dev:runios && npm run start",
"dev:buildserver": "babel ./server -d ./server-dist --watch --ignore ./server-dist --presets es2015,stage-1 --copy-files",
"dev:_buildserverNoWatch": "babel ./server -d ./server-dist --presets es2015,stage-1 --copy-files",
"dev:_builddbtables": "node ./server-dist/db/initialization/initializeSchema.js",
"dev:HARDresetdb": "npm run dev:_buildserverNoWatch && npm run dev:_builddbtables",
"postinstall": "npm run dev:_buildserverNoWatch",
"test": "./node_modules/mocha/bin/mocha tests --recursive -R nyan",
"start": "node server-dist/server.js"
},
"dependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-1": "^6.13.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"lodash": "^4.14.2",
"mocha": "^3.0.2",
"pg": "^6.0.3",
"pg-hstore": "^2.3.2",
"react": "~15.2.1",
"react-native": "^0.30.0",
"react-native-accordion": "^1.0.1",
"react-native-button": "^1.6.0",
"react-native-camera": "git+https://github.com/lwansbrough/react-native-camera.git",
"react-native-facebook-login": "^1.3.0",
"react-native-star-rating": "^1.0.6",
"react-native-vector-icons": "^2.0.3",
"request": "^2.74.0",
"sequelize": "^3.23.6",
"tcomb-form-native": "^0.6.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"sinon": "^1.17.5"
}
}