forked from Funfunz/funfunz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.06 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "funfunzmc",
"version": "0.3.1",
"description": "backoffice generator",
"main": "lib/api/index.js",
"engines": {
"node": ">=9.11.1"
},
"scripts": {
"test": "jest --coverage --forceExit && codecov",
"lint": "tslint src/**/*.ts",
"dev": "DEBUG=funfunzmc:* NODE_ENV=development babel-node --extensions \".js,.ts,.tsx,.json\" ./dev.ts",
"questions": "DEBUG=funfunzmc:* NODE_ENV=development babel-node --extensions \".js,.ts,.tsx,.json\" ./src/generator/index.ts",
"clean": "rm -rf lib bin && mkdir lib",
"type-check": "tsc",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run lint && npm run clean && npm run build:types && npm run build:js",
"build:types": "tsc",
"build:js": "babel src -d lib --extensions \".js,.ts,.tsx\" --source-maps inline && cp -rf ./src/api/public ./lib/api",
"start": "NODE_ENV=production node ./lib/index.js",
"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'"
},
"bin": {
"funfunzmc": "./lib/generator/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JWebCoder/funfunzmc.git"
},
"keywords": [
"backoffice",
"generator"
],
"author": "João Moura",
"license": "MIT",
"bugs": {
"url": "https://github.com/JWebCoder/funfunzmc/issues"
},
"homepage": "https://github.com/JWebCoder/funfunzmc#readme",
"dependencies": {
"@types/mysql2": "github:types/mysql2",
"codecov": "^3.6.1",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"debug": "^4.1.1",
"enquirer": "^2.3.2",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"graphql": "^14.5.8",
"jsonschema": "^1.2.5",
"knex": "^0.19.5",
"metle": "^1.0.1",
"minimist": "^1.2.5",
"mongodb": "^3.4.1",
"morgan": "^1.9.1",
"mysql2": "^2.1.0",
"pluralize": "^8.0.0",
"tslint": "^5.20.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.7.7",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@types/bluebird": "^3.5.29",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.2",
"@types/express-graphql": "^0.8.2",
"@types/graphql": "^14.5.0",
"@types/jest": "^24.0.25",
"@types/minimist": "^1.2.0",
"@types/mongodb": "^3.3.14",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.24",
"@types/pluralize": "0.0.29",
"@types/supertest": "^2.0.8",
"babel-plugin-dynamic-import-node": "^2.3.0",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"jest": "^25.3.0",
"supertest": "^4.0.2",
"ts-jest": "^24.3.0",
"typescript": "^3.7.4"
}
}