-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "express-boilerplate",
"version": "1.0.0",
"description": "A boilerplate project for quickly building REST APIs using Node.js, Express.",
"main": "app.js",
"type": "module",
"scripts": {
"start:dev": "nodemon -r dotenv/config app.js",
"lint": "./node_modules/.bin/eslint",
"lint:fix": "./node_modules/.bin/eslint --fix",
"prettier": "./node_modules/.bin/prettier --check .",
"prettier:fix": "./node_modules/.bin/prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Grzegorz Kielar <[email protected]>",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"helmet": "^7.0.0",
"morgan": "^1.10.0",
"winston": "^3.9.0"
},
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"nodemon": "^2.0.22",
"prettier": "2.8.8"
},
"keywords": [
"node",
"node.js",
"boilerplate",
"generator",
"express",
"rest",
"api",
"es6",
"es7",
"es8",
"es9",
"ajv",
"eslint",
"prettier"
]
}