-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "labs-api-starter",
"version": "1.0.0",
"private": false,
"license": "MIT",
"repository": "github:Lambda-School-Labs/labs-api-starter",
"scripts": {
"start": "node server.js",
"watch:dev": "nodemon",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix .",
"format": "npx prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md)\"",
"knex": "npx knex --knexfile config/knexfile.js",
"tests": "jest --watchAll",
"coverage": "CI=true npx jest --coverage --detectOpenHandles --forceExit"
},
"nodemonConfig": {
"exec": "npm run start",
"watch": [
"api/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"dependencies": {
"@okta/jwt-verifier": "^2.0.1",
"@okta/okta-sdk-nodejs": "^4.4.0",
"@sendgrid/mail": "^7.4.2",
"aws-sdk": "^2.858.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-validator": "^6.9.2",
"faker": "^4.1.0",
"helmet": "^3.23.1",
"http-errors": "~1.6.3",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.1",
"knex-cleaner": "^1.3.1",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"path": "^0.12.7",
"pg": "^8.2.1",
"sqlite3": "^5.0.2",
"swagger-jsdoc": "^4.0.0",
"swagger-ui-express": "^4.1.4",
"url": "^0.11.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.3.0",
"jest": "^25.2.4",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.4.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"supertest": "^4.0.2"
},
"prettier": {
"singleQuote": true
},
"jest": {
"testEnvironment": "node"
}
}