-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.28 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
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
{
"name": "@funfunz/core",
"version": "0.25.0",
"description": "backoffice generator",
"exports": {
"./lib/index.js": "./lib/index.js"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"bin": {
"funfunz": "./lib/generator/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JWebCoder/funfunz.git"
},
"keywords": [
"backoffice",
"generator"
],
"author": "João Moura",
"license": "MIT",
"bugs": {
"url": "https://github.com/JWebCoder/funfunz/issues"
},
"homepage": "https://github.com/JWebCoder/funfunz#readme",
"devDependencies": {
"@funfunz/sql-data-connector": "^0.12.1",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.4.1",
"@types/pluralize": "0.0.29",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"axios": "^1.6.7",
"codecov": "^3.8.3",
"cors": "^2.8.5",
"docsify-cli": "^4.4.4",
"eslint": "^8.57.0",
"mysql2": "^3.9.2",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"enquirer": "^2.3.6",
"express": "^4.18.3",
"graphql": "^16.8.1",
"graphql-http": "^1.22.0",
"graphql-parse-resolve-info": "^4.13.0",
"graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2",
"jsonschema": "^1.4.1",
"minimist": "^1.2.8",
"morgan": "^1.10.0",
"pluralize": "^8.0.0"
},
"scripts": {
"docs": "docsify serve ./docs",
"execute:test": "DEBUG=Joan-* node --import tsx ./src/test/api.test.executable.ts",
"test": "DEBUG=Joan-* node --import tsx --trace-warnings --test ./src/**/*.test.ts",
"lint": "eslint src",
"questions": "DEBUG=funfunz:* NODE_ENV=development ts-node ./src/generator/index.ts",
"clean": "rm -rf lib && mkdir lib",
"build": "npm run lint && npm run clean && npm run build:js",
"build:js": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build",
"docker-compose:up": "docker compose up -d",
"docker-compose:down": "docker compose down --remove-orphans",
"mysql:shell": "docker compose exec mysqldb bash -c 'mysql -u root -p$MYSQL_ROOT_PASSWORD $MYSQL_DATABASE'"
}
}