-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "middleware",
"version": "1.0.0",
"description": "Node middleware to interact with Firebase",
"main": "index.js",
"scripts": {
"build": "npm run clean && webpack -p",
"clean": "rimraf dist",
"client": "npm run start --prefix client",
"dev": "NODE_ENV=development npm run server",
"lint": "eslint --ignore ./node_modules src/ --debug",
"lint-fix": "eslint --ignore ./node_modules src/ --fix",
"server": "babel-watch --watch src src/server --ignore tests",
"start": "concurrently \"npm run dev\" \"npm run client\"",
"test": "mocha"
},
"author": "Bob Rock <brock@8thwonder.io>",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"concurrently": "^4.0.1",
"convict": "^4.3.2",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.3",
"express": "^4.16.3",
"firebase": "^5.4.2",
"firebase-admin": "^6.0.0",
"firebaseui": "^3.4.0",
"helmet": "^3.13.0",
"lodash": "^4.17.19",
"morgan": "^1.9.1",
"pm2": "^3.0.4",
"puppeteer": "^1.13.0",
"raven": "^2.6.3",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.0",
"babel-minify": "^0.4.3",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-watch": "^2.0.7",
"chai": "^4.1.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^1.0.0",
"eslint": "^5.4.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"file-loader": "^2.0.0",
"json-loader": "^0.5.7",
"mocha": "^5.2.0",
"mocha-loader": "^2.0.0",
"node-loader": "^0.6.0",
"rimraf": "^2.6.2",
"sinon": "^6.1.5",
"style-loader": "^0.23.0",
"supertest": "^3.1.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.11",
"webpack-node-externals": "^1.7.2"
}
}