-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.02 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
{
"name": "jetpax",
"version": "0.6.0",
"description": "pragmatic development environment management",
"repository": "andyfleming/jetpax",
"keywords": [
"local-development",
"development",
"environment",
"process-management",
"docker",
"cli",
"ui",
"jetpax",
"jetpacks"
],
"bin": {
"jpx": "build/src/Cli/run-cli.js"
},
"scripts": {
"start": "ts-node-dev --respawn --transpileOnly src/Server/run-server.ts",
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"coverage": "npm test -- --coverage"
},
"author": "Andy Fleming <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.25",
"@types/cli-table2": "^0.2.2",
"@types/cors": "^2.8.4",
"@types/execa": "^0.9.0",
"@types/express": "^4.16.1",
"@types/jest": "^23.3.13",
"@types/joi": "^14.3.0",
"@types/js-yaml": "^3.12.0",
"@types/lodash": "^4.14.122",
"@types/node": "^10.12.19",
"@types/opn": "^5.1.0",
"@types/pino": "^5.8.4",
"@types/socket.io": "^2.1.2",
"@types/strip-ansi": "^3.0.0",
"@types/uuid": "^3.4.4",
"jest": "23.6.0",
"np": "^3.1.0",
"ts-jest": "^23.10.5",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3.3333"
},
"dependencies": {
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"carlo": "^0.9.43",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"daemonize-process": "^2.0.1",
"enquirer": "^2.3.0",
"execa": "^1.0.0",
"express": "^4.16.4",
"joi": "^14.3.1",
"js-yaml": "^3.12.1",
"level": "^4.0.0",
"lodash": "^4.17.11",
"opn": "^5.4.0",
"pino": "^5.11.1",
"pino-pretty": "^2.5.0",
"pm2": "^3.2.9",
"prompt-confirm": "^2.0.4",
"prompt-password": "^1.2.0",
"socket.io": "^2.2.0",
"strip-ansi": "^5.0.0",
"uuid": "^3.3.2"
},
"files": [
"build/**/*",
"docs/**/*",
"ui/build/**/*",
"ui/public/**/*",
"CHANGELOG.md",
"README.md"
]
}