-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "@cisl/express",
"description": "An opinionated express depending on cog.json",
"version": "1.0.4",
"author": "Matthew Peveler <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/ejs": "^3.1.0",
"@types/express": "^4.17.0",
"@types/node": "^12.0.10",
"@types/serve-favicon": "^2.2.31",
"@types/serve-static": "^1.13.2",
"@types/ws": "^7.4.7",
"cookie-parser": "^1.4.4",
"ejs": "^3.1.6",
"express": "^4.17.1",
"serve-favicon": "^2.5.0",
"serve-static": "^1.14.1",
"ws": "^7.5.7"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^7.32.0",
"tsc-publish": "^0.3.0",
"typescript": "^3.5.2"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint src/*",
"prepublishOnly": "echo \"Do not run publish directly, run tsc-publish\" && exit 1",
"tsc-publish": "tsc-publish"
},
"repository": {
"type": "git",
"url": "https://github.com/cislrpi/express"
},
"publishConfig": {
"access": "public"
}
}