@vue-skuilder/express 0.1.1 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +73 -73
package/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
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
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
2
|
+
"name": "@vue-skuilder/express",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
5
|
+
},
|
|
6
|
+
"version": "0.1.4",
|
|
7
|
+
"description": "an API",
|
|
8
|
+
"main": "dist/app.js",
|
|
9
|
+
"type": "module",
|
|
10
|
+
"types": "dist/app.d.ts",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"clean": "rimraf dist",
|
|
13
|
+
"dev": "tsx watch src/app.ts",
|
|
14
|
+
"build": "yarn clean && tsc",
|
|
15
|
+
"start": "node dist/app.js",
|
|
16
|
+
"test": "jest --config jest.config.ts",
|
|
17
|
+
"lint": "npx eslint .",
|
|
18
|
+
"lint:fix": "npx eslint . --fix",
|
|
19
|
+
"lint:check": "npx eslint . --max-warnings 0",
|
|
20
|
+
"type-check": "tsc --noEmit"
|
|
21
|
+
},
|
|
22
|
+
"packageManager": "yarn@4.6.0",
|
|
23
|
+
"author": "Colin Kennedy",
|
|
24
|
+
"license": "GPL-3.0-or-later",
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"@vue-skuilder/common": "^0.1.4",
|
|
27
|
+
"@vue-skuilder/db": "^0.1.4",
|
|
28
|
+
"axios": "^1.7.4",
|
|
29
|
+
"cookie-parser": "^1.4.7",
|
|
30
|
+
"cors": "^2.8.5",
|
|
31
|
+
"dotenv": "^16.4.7",
|
|
32
|
+
"express": "^4.21.2",
|
|
33
|
+
"express-rate-limit": "^7.5.0",
|
|
34
|
+
"ffmpeg-static": "^5.2.0",
|
|
35
|
+
"hashids": "^2.3.0",
|
|
36
|
+
"morgan": "^1.10.0",
|
|
37
|
+
"nano": "^ 9.0.5",
|
|
38
|
+
"pouchdb": "9.0.0",
|
|
39
|
+
"winston": "^3.17.0",
|
|
40
|
+
"winston-daily-rotate-file": "^5.0.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@babel/core": "^7.26.9",
|
|
44
|
+
"@babel/preset-env": "^7.26.9",
|
|
45
|
+
"@babel/preset-typescript": "^7.26.0",
|
|
46
|
+
"@tsconfig/node18": "^18.2.4",
|
|
47
|
+
"@types/cookie-parser": "^1.4.8",
|
|
48
|
+
"@types/cors": "^2.8.17",
|
|
49
|
+
"@types/dotenv": "^8.2.3",
|
|
50
|
+
"@types/express": "4.17.21",
|
|
51
|
+
"@types/express-rate-limit": "^6.0.2",
|
|
52
|
+
"@types/ffmpeg-static": "^2.0.0",
|
|
53
|
+
"@types/hashids": "^1.0.30",
|
|
54
|
+
"@types/jest": "^29.5.14",
|
|
55
|
+
"@types/morgan": "^1.9.9",
|
|
56
|
+
"@types/node": "18",
|
|
57
|
+
"@types/pouchdb": "^6.4.2",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^8.25.0",
|
|
59
|
+
"@typescript-eslint/parser": "^8.25.0",
|
|
60
|
+
"babel-jest": "^29.6.1",
|
|
61
|
+
"eslint": "^9.21.0",
|
|
62
|
+
"eslint-config-prettier": "^10.0.2",
|
|
63
|
+
"eslint-plugin-prettier": "^5.2.3",
|
|
64
|
+
"jest": "^29.6.1",
|
|
65
|
+
"jest-environment-node": "^29.7.0",
|
|
66
|
+
"prettier": "^3.0.0",
|
|
67
|
+
"rimraf": "*",
|
|
68
|
+
"ts-jest": "^29.2.5",
|
|
69
|
+
"ts-node": "^10.9.2",
|
|
70
|
+
"tsx": "^4.19.2",
|
|
71
|
+
"typescript": "^5.7.2",
|
|
72
|
+
"typescript-eslint": "^8.25.0"
|
|
73
|
+
}
|
|
74
|
+
}
|