-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 805 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 805 Bytes
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
{
"name": "node-firebase-rest-api-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"es6": "./node_modules/.bin/http-server -c-1 .",
"start": "./node_modules/.bin/ts-node ./server/server.ts",
"watch": "./node_modules/.bin/nodemon -V -w . --ext \".ts\" --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.22",
"body-parser": "^1.17.2",
"http-server": "^0.10.0",
"nodemon": "^1.11.0",
"ts-node": "^3.0.4",
"typescript": "^2.3.3"
},
"dependencies": {
"@types/es6-promise": "0.0.32",
"express": "^4.15.3",
"firebase-admin": "^5.0.0",
"lodash": "^4.17.4"
}
}