-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "ejs-previewer-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node_modules/.bin/cross-env NODE_ENV=production node index.js",
"start:dev": "node_modules/.bin/cross-env node index.js",
"test": "jest --detectOpenHandles --forceExit",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BRIKEV/ejs-previewer-backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BRIKEV/ejs-previewer-backend/issues"
},
"homepage": "https://github.com/BRIKEV/ejs-previewer-backend#readme",
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"error-handler-module": "^1.0.5",
"express": "^4.17.1",
"express-jsdoc-swagger": "^1.6.2",
"express-oas-validator": "^2.0.2",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.5",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}