-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "nodejs-api",
"version": "0.0.1",
"description": "Example NodeJS API",
"main": "src/index.js",
"author": "ADO-EACD",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "cross-env nodemon -L ./bin/www",
"test": "cross-env nyc mocha"
},
"dependencies": {
"@sentry/node": "^5.15.4",
"cookie-parser": "^1.4.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-errors": "^1.7.3",
"moment": "^2.24.0",
"morgan": "^1.10.0",
"nusso": "^2.0.0",
"serverless-http": "^2.4.1",
"yayson": "^2.0.10-quickfix"
},
"devDependencies": {
"aws-sdk": "^2.670.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"faker": "^4.1.0",
"mocha": "^7.1.1",
"nodemon": "^2.0.2",
"nyc": "^15.0.1"
},
"nodemonConfig": {
"events": {
"start": "cls || clear; echo \"Started nodemon...\n\""
}
}
}