-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.27 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.27 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "new-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"coverage": "npm run test -- --coverage --runInBand",
"test": "tsnd -T node_modules/jest/bin/jest.js ",
"test:ls": "npm run test -- --json",
"test:watch": "npm run test -- --watch --maxWorkers=50%",
"clean": "rimraf dist",
"transpile": "tsc --noEmit false && tscpaths -p tsconfig.json -s ./src -o ./dist",
"copy-reference": "copyfiles -f src/reference/* dist/reference/",
"build": "npm run clean && npm run transpile && npm run copy-reference",
"start": "tsnd --respawn -r tsconfig-paths/register --transpile-only ./src/index.ts",
"start:debug": "tsnd --respawn --inspect=4321 -r tsconfig-paths/register --transpile-only ./src/index.ts",
"prepare": "npx husky install",
"extract": "tsnd --quiet ./extract_tests.ts",
"types": "npx openapi-typescript src/reference/openapi.yml --output src/schema.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@appquality/tryber-database": "^0.46.20",
"@appquality/wp-auth": "^1.0.7",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/hash-node": "^3.374.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/s3-request-presigner": "^3.826.0",
"@aws-sdk/url-parser": "^3.374.0",
"@aws-sdk/util-format-url": "^3.821.0",
"@googlemaps/google-maps-services-js": "^3.3.7",
"@sendgrid/mail": "^7.6.0",
"@sentry/node": "^7.83.0",
"avatar-initials": "^5.0.0",
"aws-sdk": "^2.1087.0",
"axios": "^0.25.0",
"body-parser": "^1.19.1",
"codice-fiscale-js": "^2.3.13",
"comuni-province-regioni": "^0.4.3",
"connect-busboy": "^1.0.0",
"core-js": "^3.6.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.1",
"express-fileupload": "^1.4.0",
"glob": "^8.0.3",
"i18n-iso-countries": "^7.11.2",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer-s3": "^2.10.0",
"mysql": "^2.18.1",
"openapi-backend": "^3.9.2",
"parse-comments": "^1.0.0",
"php-serialize": "^4.1.1",
"php-unserialize": "^0.0.1",
"spark-md5": "^3.0.2",
"uuid": "^9.0.0",
"wordpress-hash-node": "^1.0.0"
},
"devDependencies": {
"@appquality/jest-extract": "^1.3.0",
"@swc/core": "^1.2.196",
"@swc/jest": "^0.2.21",
"@types/connect-busboy": "^1.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-fileupload": "^1.2.2",
"@types/jest": "^27.5.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/mysql": "^2.15.20",
"@types/spark-md5": "^3.0.4",
"@types/sqlite3": "^3.1.8",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@types/wordpress-hash-node": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"better-sqlite3": "^12.5.0",
"copyfiles": "^2.4.1",
"husky": "^7.0.4",
"jest": "^28.1.0",
"jest-cli": "^28.1.0",
"node-gyp": "^11.1.0",
"openapi-typescript": "^5.1.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^3.14.1",
"tscpaths": "^0.0.9",
"typescript": "^4.6.3",
"yaml-sort": "2"
}
}