-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"name": "express-api-starter",
"description": "A simple Express API starter template for medium-to-large sized Express apps.",
"version": "1.0.0",
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexdevero/express-api-starter.git"
},
"bugs": {
"url": "https://github.com/alexdevero/express-api-starter/issues"
},
"author": {
"name": "Alex Devero",
"url": "https://github.com/alexdevero"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"keywords": [
"app",
"boilerplate",
"express",
"nodejs",
"open-source",
"source",
"starter",
"template"
],
"scripts": {
"build": "babel ./src --out-dir build",
"prestart": "babel ./src --out-dir build",
"start": "node ./build/bin/www",
"startdev": "nodemon --exec babel-node ./src/bin/www"
},
"dependencies": {
"compression": "1.7.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"debug": "2.6.9",
"express": "4.17.1",
"express-rate-limit": "^5.1.3",
"helmet": "4.1.0",
"http-errors": "1.8.0",
"morgan": "1.10.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.4",
"@babel/node": "7.10.5",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@babel/register": "7.10.5",
"@babel/runtime": "7.11.2",
"nodemon": "2.0.4",
"prettier": "2.1.1"
}
}