-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "pinup",
"version": "1.1.8",
"description": "Pinup is a library that enables you to create simple and efficient REST APIs in TypeScript using the Express framework.",
"homepage": "https://github.com/cnuebred/pinup",
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc",
"publish": "npm publish --access public",
"dev": "nodemon --exec npx ts-node app.ts",
"test": "npx jest"
},
"keywords": [
"Pinup",
"API",
"REST",
"Framework"
],
"repository":"https://github.com/cnuebred/pinup",
"author": "Jonathan Cube",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1"
},
"dependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.3.3"
}
}