@rovi-tickets/common 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +31 -0
package/package.json
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
{
|
2
|
+
"name": "@rovi-tickets/common",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "",
|
5
|
+
"main": "./build/index.js",
|
6
|
+
"types": "./build/index.d.ts",
|
7
|
+
"files": [
|
8
|
+
"build/**/*"
|
9
|
+
],
|
10
|
+
"scripts": {
|
11
|
+
"clean": "del ./build/*",
|
12
|
+
"build": "npm run clean && tsc",
|
13
|
+
"pub": "git add . && git commit -m \"Updates\" && npm version patch && npm run build && npm publish"
|
14
|
+
},
|
15
|
+
"keywords": [],
|
16
|
+
"author": "",
|
17
|
+
"license": "ISC",
|
18
|
+
"devDependencies": {
|
19
|
+
"del-cli": "^5.1.0",
|
20
|
+
"typescript": "^5.6.2"
|
21
|
+
},
|
22
|
+
"dependencies": {
|
23
|
+
"@types/cookie-session": "^2.0.49",
|
24
|
+
"@types/express": "^5.0.0",
|
25
|
+
"@types/jsonwebtoken": "^9.0.7",
|
26
|
+
"cookie-session": "^2.1.0",
|
27
|
+
"express": "^4.21.0",
|
28
|
+
"express-validator": "^7.2.0",
|
29
|
+
"jsonwebtoken": "^9.0.2"
|
30
|
+
}
|
31
|
+
}
|