-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.72 KB
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
{
"name": "my-app-backend",
"version": "0.0.1",
"description": "This is the backend of my-app",
"main": "build/index.js",
"module": "src/index.js",
"requiredVariables": [],
"scripts": {
"build": "babel src --out-dir build",
"debug": "nodemon --inspect --exec babel-node src/index.js",
"dev": "nodemon --exec babel-node src/index.js --ignore jsconfig.json",
"start": "node build/index.js",
"format": "prettier --write \"**/*.{js,mjs,cjs}\"",
"format:check": "prettier -c \"**/*.{js,mjs,cjs}\"",
"lint": "eslint \"src/**/*.{js,mjs,cjs}\"",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"config": "^3.3.6",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^5.2.6",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"morgan": "^1.10.0",
"picocolors": "^1.0.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/node": "^7.14.5",
"@babel/plugin-proposal-throw-expressions": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/runtime": "^7.14.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.2",
"@types/jest": "^26.0.23",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.28.0",
"eslint-plugin-jest": "^24.3.6",
"husky": "^7.0.1",
"jest": "^27.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.1",
"pretty-quick": "^3.1.1",
"supertest": "^6.1.4"
}
}