-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.36 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": "simple-express-framework",
"version": "3.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup-node src/index.ts --dts",
"test": "vitest --globals",
"generateToc": "markdown-toc --bullets=\"*\" --no-firsth1 README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/Lukasz-pluszczewski/simple-express"
},
"author": "Łukasz Pluszczewski",
"bugs": {
"url": "https://github.com/Lukasz-pluszczewski/simple-express/issues"
},
"homepage": "https://github.com/Lukasz-pluszczewski/simple-express",
"keywords": [
"express",
"framework",
"simple",
"node"
],
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.5",
"@types/supertest": "^6.0.2",
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.0.1",
"find-free-port": "^2.0.0",
"helmet": "^8.0.0",
"jest-extended": "^4.0.2",
"markdown-toc": "^1.2.0",
"supertest": "^7.0.0",
"tsup": "^8.3.4",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"dependencies": {
"debug": "^4.3.5",
"lodash": "^4.17.21"
},
"peerDependencies": {
"express": ">=4.21.1 <6.0.0"
}
}