-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "@expresso/app",
"version": "1.2.4",
"description": "Basic @expresso express boilerplate",
"main": "dist/index.js",
"dependencies": {
"@sentry/node": "^5.27.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"deeptrace-express": "^1.2.4",
"express": "^4.17.1",
"helmet": "^4.2.0",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0",
"sugar-env": "^1.5.13"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"@types/helmet": "4.0.0",
"@types/lodash": "^4.14.165",
"@types/lodash.merge": "^4.6.6",
"@types/morgan": "^1.9.2",
"@types/node": "^14.14.9",
"typedoc": "^0.19.2",
"typedoc-plugin-markdown": "^3.0.11",
"typescript": "^4.1.2"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"build:watch": "tsc -w",
"build:clean": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build:clean",
"postpublish": "npm run clean"
},
"keywords": [
"express",
"boilerplate",
"config",
"init",
"setup"
],
"contributors": [
"Rogério Munhoz <[email protected]>"
],
"license": "GPL-3.0",
"files": [
"dist"
]
}