-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
105 lines (105 loc) · 3.29 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
{
"name": "Orenda",
"version": "0.0.1",
"description": "List Anything",
"scripts": {
"start": "node index.js",
"prestart": "webpack",
"postinstall": "webpack",
"unittest:server": "./node_modules/.bin/mocha --reporter nyan test/server/index.js",
"unittest:web": "./node_modules/.bin/mocha test/.setup.js test/client-web/WebSpec.js",
"unittest:mobile": "./node_modules/.bin/mocha --require test/client-ios/init.js test/client-ios/**/*.js",
"integrationtest": "./node_modules/.bin/mocha --reporter nyan test/integration/ApiSpec.js",
"test": "npm run unittest:server && npm run unittest:web && npm run unittest:mobile && npm run integrationtest",
"coverage": "istanbul cover --root server/ _mocha -- test/server/ -R spec"
},
"pre-commit": [
"test"
],
"author": "Team Orenda",
"dependencies": {
"amazon-product-api": "^0.3.10",
"axios": "^0.12.0",
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.1",
"copy-webpack-plugin": "^3.0.1",
"cors": "^2.7.1",
"css-loader": "^0.23.1",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"jquery": "^3.0.0",
"jsonwebtoken": "^7.0.1",
"lodash": "^4.13.1",
"masonry-layout": "^4.1.0",
"materialize-css": "^0.97.6",
"mockery": "^1.7.0",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"pg": "^5.1.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-native": "0.27.2",
"react-native-autocomplete-input": "^1.1.0",
"react-native-calendar-reminders": "0.0.6",
"react-native-dismiss-keyboard": "^1.0.0",
"react-native-location": "^0.27.0",
"react-native-material-kit": "^0.3.2",
"react-native-router-flux": "^3.30.0",
"react-native-swipeout": "git+https://github.com/magrinj/react-native-swipeout",
"react-native-vector-icons": "^2.0.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"redux": "^3.5.2",
"redux-form": "^5.2.5",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.1.0",
"sequelize": "^3.23.3",
"spotify-web-api-node": "^2.3.0",
"style-loader": "^0.13.1",
"tcomb-form-native": "^0.5.1",
"underscore": "^1.8.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"yelp": "^1.0.1"
},
"devDependencies": {
"babel-preset-react-native": "^1.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"cheerio": "^0.20.0",
"enzyme": "^2.3.0",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.1.0",
"gulp-plumber": "^1.1.0",
"gulp-util": "^3.0.7",
"gulp-wait": "0.0.2",
"jsdom": "^9.2.1",
"mocha": "^2.5.3",
"morgan": "^1.7.0",
"pre-commit": "^1.1.3",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"react-native-mock": "^0.2.4",
"redux-logger": "^2.6.1",
"sinon": "^1.17.4",
"sinon-as-promised": "^4.0.0",
"supertest": "^1.2.0",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.2.0"
},
"babel": {
"presets": [
"react-native"
]
}
}