-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
{
"name": "@croquiscom/crary-express",
"version": "2.0.1",
"description": "Croquis's library - express extension",
"engines": {
"node": ">=16"
},
"main": "./lib",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "rimraf lib && tsc -p src/tsconfig.build.json",
"lint": "../../node_modules/.bin/eslint .",
"test:type": "tsc --noEmit",
"test": "npm run test:type && npm run lint",
"changeset": "changeset",
"release": "npm run lint && npm run build && npm run changeset publish"
},
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/crary-node.git"
},
"author": "Sangmin Yoon <simon.yoon@kakaostyle.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/croquiscom/crary-node/issues"
},
"homepage": "https://github.com/croquiscom/crary-node",
"dependencies": {
"body-parser": "^2.2.0",
"compression": "^1.8.0",
"connect-redis": "^8.0.2",
"cookie": "^1.0.2",
"cookie-parser": "^1.4.7",
"express": "^5.1.0",
"express-session": "^1.18.1",
"helmet": "^8.1.0",
"ioredis": "^5.6.1",
"log4js": "^6.9.1",
"on-finished": "^2.4.1"
},
"devDependencies": {
"@changesets/cli": "^2.29.1",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.1",
"@types/express-session": "^1.18.1",
"@types/helmet": "^4.0.0",
"@types/node": "^22.14.1",
"@types/on-finished": "^2.3.4",
"rimraf": "^6.0.1",
"typescript": "^5.8.3"
}
}