forked from HRR47-SDC-OMalley/Reviews-Proxy-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "reburke-proxy-one",
"version": "1.0.0",
"description": "A proxy server that serves modules for a listing page",
"main": "server/index.js",
"scripts": {
"test": "$(npm bin)/artillery run spec/artillery-config.yaml",
"start": "NODE_ENV=production node server/index.js",
"dev": "node -r dotenv/config server/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/HRR47-FEC-Burke/reburke-proxy-one.git"
},
"author": "Zach Mansell",
"license": "ISC",
"bugs": {
"url": "https://github.com/HRR47-FEC-Burke/reburke-proxy-one/issues"
},
"homepage": "https://github.com/HRR47-FEC-Burke/reburke-proxy-one#readme",
"dependencies": {
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.5",
"newrelic": "^6.13.0",
"pug": "^3.0.0"
},
"devDependencies": {
"artillery": "^1.6.1",
"dotenv": "^8.2.0",
"eslint": "^7.6.0",
"eslint-config-hackreactor": "https://github.com/reactorcore/eslint-config-hackreactor",
"grunt": "^1.3.0",
"grunt-aws": "^0.7.1"
}
}