-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "payment-portal",
"version": "1.0.0",
"description": "",
"main": "src/server/index.js",
"scripts": {
"build": "webpack",
"dev": "NODE_ENV=development babel-watch --watch src src/server/index.js",
"lint": "eslint --ignore ./node_modules src/ --color",
"lint-fix": "eslint --ignore ./node_modules src/ --color --fix",
"lint-dry": "eslint --ignore ./node_modules src/ --color --fix-dry-run",
"test": "NODE_ENV=test mocha"
},
"dependencies": {
"artillery": "^1.6.0-22",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"concurrently": "^3.6.1",
"convict": "^4.3.2",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"express": "^4.16.3",
"firebase": "^5.3.0",
"firebase-admin": "^5.13.1",
"helmet": "^3.13.0",
"lodash": "^4.17.10",
"morgan": "^1.9.0",
"pm2": "^3.0.3",
"raven": "^2.6.3",
"redis": "^2.8.0",
"stripe": "^6.7.0",
"winston": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"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",
"eslint": "^5.2.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"mocha-loader": "^1.1.3",
"node-loader": "^0.6.0",
"puppeteer": "^1.6.1",
"should": "^13.2.2",
"sinon": "^6.1.4",
"supertest": "^3.1.0",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-node-externals": "^1.7.2"
},
"author": "Bob Rock <[email protected]>",
"license": "MIT"
}