-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"name": "ciima",
"version": "1.0.0",
"description": "Comic Issue Inventory Management Application",
"main": "server/server.js",
"scripts": {
"dev": "concurrently \" nodemon server/server.js \" \"cd client && npm run serve \" ",
"start:server": "nodemon server/server.js",
"start:worker": "nodemon worker/worker.js",
"test": "mocha --recursive",
"heroku-postbuild": "cd client; npm install --dev ; npm run build",
"start": "node server/server.js"
},
"author": "Brian Ridsdale",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.5",
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.3",
"date-fns": "^2.7.0",
"dotenv": "^8.1.0",
"ebay-api": "^1.13.7",
"ebay-oauth-nodejs-client": "^1.2.1",
"emoji-strip": "^1.0.1",
"fast-csv": "^4.3.6",
"fastify": "^2.8.0",
"fastify-cors": "^2.1.3",
"fastify-file-upload": "^2.1.0",
"fastify-jwt": "^1.1.0",
"fastify-mysql": "^0.3.0",
"fastify-rabbit": "^1.2.1",
"fastify-static": "^2.5.0",
"fastify-swagger": "^2.4.0",
"logdna-winston": "^2.2.4",
"morgan": "^1.9.1",
"mysql2": "^1.7.0",
"node-cache": "^5.1.2",
"node-schedule": "^1.3.2",
"query-string": "^6.8.3",
"querystring": "^0.2.0",
"request": "^2.88.0",
"serialize-error": "^8.1.0",
"simple-amqplib": "^7.0.3",
"uuid": "^3.3.3",
"winston": "^3.2.1",
"xml2js": "^0.4.23",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"concurrently": "^4.1.2",
"mocha": "^7.2.0"
}
}