forked from 5e-bits/5e-srd-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 973 Bytes
/
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
{
"name": "dnd-5e-srd-api",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node src/start.js",
"lint": "eslint . --ext .js",
"test": "jest -c jest.config.js",
"test:unit": "jest -c jest.config.unit.js",
"test:integration": "jest -c jest.config.integration.js"
},
"dependencies": {
"@bugsnag/js": "^6.5.0",
"@bugsnag/plugin-express": "^6.5.1",
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.3",
"debug": "^4.1.1",
"ejs": "^2.5.5",
"escape-string-regexp": "^2.0.0",
"eslint-plugin-jest": "^23.3.0",
"express": "^4.17.1",
"lodash": "^4.17.3",
"mongoose": "^5.8.3",
"morgan": "^1.9.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"mockingoose": "^2.13.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
}
}