-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.28 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.28 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
{
"name": "unguess-core",
"version": "1.0.0",
"description": "Questo è il progetto iniziale per la definizione di un API di comunicazione tra i componenti del core di UNGUESS.",
"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 && npx tscpaths -p tsconfig.json -s ./src -o ./dist",
"copy-reference": "ncp src/reference/ dist/reference/",
"copy-reference-swag": "swagger-cli bundle -t yaml -o dist/reference/openapi.yaml src/reference/openapi.yaml",
"build": "npm-run-all clean transpile 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",
"types": "npx openapi-typescript src/reference/openapi.yaml --output src/schema.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppQuality/unguess-core.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AppQuality/unguess-core/issues"
},
"homepage": "https://github.com/AppQuality/unguess-core#readme",
"devDependencies": {
"@apidevtools/swagger-cli": "^4.0.4",
"@swc/core": "^1.2.212",
"@swc/jest": "^0.2.21",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.4",
"@types/mysql": "^2.15.21",
"@types/supertest": "^2.0.12",
"better-sqlite3": "^7.5.0",
"copyfiles": "^2.4.1",
"husky": "^8.0.1",
"jest": "^28.1.2",
"ncp": "^2.0.0",
"supertest": "^6.2.4",
"ts-jest": "^28.0.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.0.0",
"tscpaths": "^0.0.9",
"typescript": "^4.7.4"
},
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"glob": "^8.0.3",
"mysql": "^2.18.1",
"openapi-backend": "^5.3.0",
"parse-comments": "^1.0.0"
}
}