-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
{
"name": "@appandflow/s-express",
"author": {
"name": "Vincent de Lafontaine",
"email": "[email protected]"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": {
"url": "https://github.com/AppAndFlow/s-express"
},
"files": [
"dist"
],
"version": "1.0.9",
"scripts": {
"build": "tsc",
"dev": "nodemon --ignore /tmp --ext ts --exec 'tsc && node dist/index.js'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write '**/*'",
"start": "NODE_ENV=production node dist/index.js",
"gen": "rm -rf docs && tsc && DOC_MODE=true node dist/index.js",
"tsc": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"execa": "^4.0.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"fs-extra": "^9.0.1",
"js-yaml": "^3.14.0",
"json-to-pretty-yaml": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"openapi-markdown": "^1.2.3",
"quicktype": "^15.0.258",
"quicktype-core": "^6.0.69",
"require-dir": "^1.2.0",
"ts-to-openapi": "^1.2.0"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.2",
"@types/fs-extra": "^9.0.2",
"@types/js-yaml": "^3.12.5",
"@types/jsonwebtoken": "^8.3.5",
"@types/morgan": "^1.9.1",
"@types/node-fetch": "^2.5.7",
"@types/require-dir": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"typescript": "^4.0.3"
}
}