-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "festico-manage-server",
"version": "0.11.0",
"description": "Simple Firebase Server",
"main": "index.js",
"scripts": {
"server:dev": "cross-env NODE_ENV=development node index.js",
"server:dev:debug": "cross-env NODE_ENV=development nodemon --inspect index.js",
"server:alpha": "cross-env NODE_ENV=alpha-test node index.js",
"server:alpha:debug": "cross-env NODE_ENV=development nodemon --inspect index.js",
"test": "npm run lint && npm run cover",
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"debug": "mocha",
"watch": "mocha -w",
"lint": "eslint index.js lib test bin"
},
"repository": {
"type": "git",
"url": "https://github.com/kincjf/pixelcity-firebase-local-server"
},
"keywords": [
"firebase",
"server"
],
"author": "Seonho Kim",
"license": "MIT",
"bugs": {
"url": "https://github.com/kincjf/pixelcity-firebase-local-server/issues"
},
"homepage": "https://github.com/kincjf/pixelcity-firebase-local-server",
"devDependencies": {
"babel": "5.8.23",
"bluebird": "2.10.2",
"co": "4.6.0",
"coveralls": "2.11.4",
"cross-env": "^5.1.1",
"dom-storage": "^2.0.2",
"ecdsa-sig-formatter": "^1.0.9",
"eslint": "1.7.3",
"faye-websocket": "0.10.0",
"firebase": "^4.5.2",
"firebase-token-generator": "^2.0.0",
"istanbul": "0.4.0",
"mkdirp": "^0.5.1",
"mocha": "2.3.3",
"nodemon": "^1.12.1",
"proxyquire": "^1.7.3",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"any-promise": "1.3.0",
"cli": "0.11.3",
"debug": "2.2.0",
"delay": "^3.0.0",
"dotenv": "^4.0.0",
"firebase-admin": "^5.12.1",
"jsonfile": "^4.0.0",
"jsonwebtoken": "^8.1.0",
"jwt-simple": "0.3.1",
"lodash": "^3.10.1",
"moment": "^2.19.1",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"targaryen": "3.0.1",
"ws": "1.1.1"
}
}