forked from BloomTech-Labs/dep-story-squad-be-a
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.02 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
85
86
{
"name": "story-squad-api-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "node ./api/bin/server.js",
"tests": "npx jest --forceExit",
"watch:dev": "nodemon",
"knex": "npx knex --knexfile config/knexfile.js"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/config/setupTests.js"
],
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/vendor/**",
"!**/__tests__/**",
"!**/coverage/**",
"!**/dist-api/**"
]
},
"apidoc": {
"title": "Labs API Starter Scaffolding"
},
"nodemonConfig": {
"exec": "npm run dev",
"watch": [
"api/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
"*.spec.js"
]
},
"dependencies": {
"@okta/jwt-verifier": "^1.0.0",
"@okta/oidc-middleware": "^4.0.1",
"apidoc": "^0.23.0",
"apidoc-markdown": "^5.1.4",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"esm": "^3.2.25",
"express": "~4.16.1",
"express-session": "^1.17.1",
"faker": "^4.1.0",
"helmet": "^3.23.1",
"http-errors": "~1.8.0",
"knex": "^0.21.6",
"morgan": "~1.9.1",
"npm-run-all": "^4.1.5",
"pg": "^8.4.1",
"regenerator-runtime": "^0.13.5",
"save-dev": "0.0.1-security",
"stripe": "^8.110.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"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",
"jest": "^25.2.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"supertest": "^4.0.2"
},
"engines": {
"node": ">= 12.19.0",
"npm": ">= 6.14.4"
}
}