-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.13 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@typeofweb/server",
"version": "0.2.2",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": "git://github.com/typeofweb/server",
"bugs": {
"url": "https://github.com/typeofweb/server/issues"
},
"homepage": "https://github.com/typeofweb/server#readme",
"author": "Michał Miszczyszyn - Type of Web <[email protected]> (https://typeofweb.com/)",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"dist",
"LICENSE"
],
"keywords": [
"typescript",
"server",
"api"
],
"dependencies": {
"@typeofweb/schema": "0.8.0-8",
"@typeofweb/utils": "0.3.0",
"@types/cache-manager": "3.4.2",
"@types/cookie-parser": "1.4.2",
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/supertest": "2.0.11",
"@types/swagger-ui-express": "4.1.3",
"body-parser": "1.19.0",
"cache-manager": "3.4.4",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"express": "4.17.1",
"openapi-types": "9.1.0",
"prettier": "2.3.2",
"stoppable": "1.1.0",
"supertest": "6.1.3",
"swagger-ui-express": "4.1.6",
"typeconv": "1.4.1"
},
"peerDependencies": {},
"devDependencies": {
"@microsoft/api-extractor": "7.18.4",
"@rollup/plugin-commonjs": "19.0.1",
"@rollup/plugin-json": "4.1.0",
"@rollup/plugin-typescript": "8.2.3",
"@tsconfig/node12": "1.0.9",
"@tsconfig/node14": "1.0.1",
"@typeofweb/eslint-plugin": "0.2.2",
"@types/jest": "26.0.24",
"@types/node": "12",
"@types/stoppable": "1.1.1",
"all-contributors-cli": "6.20.0",
"builtin-modules": "3.2.0",
"eslint": "7.30.0",
"fast-check": "2.17.0",
"globby": "11.0.4",
"husky": "6.0.0",
"jest": "27.0.6",
"lint-staged": "11.0.1",
"nodemon": "2.0.12",
"rimraf": "3.0.2",
"rollup": "2.53.2",
"rollup-plugin-filesize": "9.1.1",
"rollup-plugin-license": "2.5.0",
"rollup-plugin-prettier": "2.1.0",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.0.3",
"ts-node": "10.1.0",
"tsd": "0.17.0",
"tslib": "2.3.0",
"typescript": "4.3.5"
},
"scripts": {
"pretest": "yarn build",
"jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "yarn jest --detectOpenHandles --forceExit --coverage",
"build": "yarn rollup:build && yarn api-extractor:build",
"test:dev": "yarn jest --watch",
"rollup:build": "rimraf dist && rollup --config",
"api-extractor:build": "api-extractor run --verbose",
"build:watch": "rollup --config --watch",
"prepublishOnly": "yarn build",
"prepare": "husky install",
"ts-node": "nodemon -w dist -e js -x 'node --loader ts-node/esm'"
},
"lint-staged": {
"**/*.ts": [
"yarn jest --passWithNoTests",
"yarn eslint --fix",
"yarn prettier --write"
],
"**/*.{md,js,json}": [
"yarn prettier --write"
]
}
}