-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "captarserver",
"version": "1.0.0",
"description": "Socket Server for captAR React Native client",
"main": "index.js",
"scripts": {
"test": "mocha **/*.test.js *.test.js",
"deploy": "git checkout -b deploy && git commit --allow-empty -m 'Deploying' && git push --force heroku deploy:master && git checkout master && git branch -D deploy",
"start-dev": "node_modules/nodemon/bin/nodemon.js -- node_modules/babel-cli/bin/babel-node.js server.js",
"start": "./node_modules/babel-cli/bin/babel-node.js server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/team-copper/captarserver.git"
},
"keywords": [
"AR",
"geolocation"
],
"author": "team-copper",
"license": "ISC",
"bugs": {
"url": "https://github.com/team-copper/captarserver/issues"
},
"homepage": "https://github.com/team-copper/captarserver#readme",
"dependencies": {
"chalk": "^2.1.0",
"cookie-session": "^1.3.2",
"express": "^4.16.1",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth20": "^1.0.0",
"socket.io": "^2.0.3",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"nodemon": "^1.12.1"
}
}