forked from 8base/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 4.4 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "8base-cli",
"version": "0.0.109",
"description": "8base CLI",
"author": "8base",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"8base": "dist/index.js"
},
"scripts": {
"build": "tsc",
"watch": "npm run build -- --watch",
"lint": "eslint --ext js,ts src ",
"lint:fix": "npm run lint --fix",
"prettier:base": "prettier --parser typescript",
"prettier:check": "npm run prettier:base -- --list-different \"{src,test}/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"{src,test}/**/*.{ts,tsx}\"",
"e2e": "jest --config e2e/config.json",
"scaffold:generate": "node ./e2e-scaffold/scripts/generateScaffold.js",
"scaffold:start": "npm run start --prefix=./temp/app-example",
"scaffold:prepare-e2e": "npm run scaffold:generate && npm run scaffold:start",
"e2e-scaffold": "jest --config ./e2e-scaffold/config.json",
"e2e-scaffold:debug": "cross-env E2E_SCAFFOLD_DEBUG=true npm run e2e-scaffold",
"e2e-scaffold:ci": "cross-env E2E_SCAFFOLD_GENERATE=true npm run e2e-scaffold",
"upload": "npm version patch && git push --follow-tags",
"postinstall": "node ./postinstall.js && (test -e dist/index.js && node dist/index.js --help || echo)"
},
"dependencies": {
"@8base/api-client": "^0.30.0",
"@8base/error-codes": "^1.0.21",
"@8base/generators": "^0.33.0",
"@8base/utils": "^0.30.0",
"@types/adm-zip": "^0.4.32",
"@types/dotenv": "^6.1.1",
"@types/ejs": "^2.6.3",
"@types/execa": "^0.9.0",
"@types/luxon": "^1.21.0",
"@types/ramda": "^0.26.13",
"@types/rimraf": "^2.0.2",
"@types/table": "^4.0.6",
"@types/validate-npm-package-name": "^3.0.0",
"@types/yaml": "^1.0.2",
"adm-zip": "^0.4.13",
"archiver": "^3.0.0",
"async": "^2.5.0",
"chalk": "^2.4.1",
"change-case": "^3.1.0",
"cuid": "^2.1.4",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.16.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"graphql": "^0.13.0",
"graphql-request": "^1.4.1",
"graphql-tag": "^2.10.1",
"graphql-tools": "^2.12.0",
"i18next": "^11.8.0",
"ignore": "^5.1.4",
"isomorphic-fetch": "^2.2.1",
"js-yaml": "^3.9.1",
"jwt-decode": "^2.2.0",
"latest-version": "^5.1.0",
"lodash": "^4.17.11",
"luxon": "^1.22.0",
"memfs": "^2.6.2",
"memorystream": "^0.3.1",
"opn": "^5.4.0",
"ora": "^3.0.0",
"path": "^0.12.7",
"prompts": "^1.1.0",
"ramda": "^0.26.1",
"readdir": "^0.0.13",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"simple-git": "^1.107.0",
"stream-to-buffer": "^0.1.0",
"strip-ansi": "^5.2.0",
"table": "^5.4.6",
"tree-node-cli": "^1.2.5",
"typescript": "^3.4.3",
"validate-npm-package-name": "^3.0.0",
"winston": "^3.1.0",
"yaml": "^1.7.0",
"yargs": "^13.3.0",
"download": "^8.0.0"
},
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/body-parser": "^1.16.8",
"@types/chalk": "^2.2.0",
"@types/cuid": "^1.3.0",
"@types/express": "^4.11.1",
"@types/fs-extra": "^5.0.0",
"@types/graphql": "^0.12.1",
"@types/i18next": "^8.4.5",
"@types/jest": "^24.0.13",
"@types/jest-image-snapshot": "^2.8.0",
"@types/js-yaml": "^3.10.1",
"@types/jwt-decode": "^2.2.1",
"@types/lodash": "^4.14.74",
"@types/mkdirp": "^0.5.2",
"@types/node": "^9.3.0",
"@types/opn": "^5.1.0",
"@types/ora": "^1.3.4",
"@types/puppeteer": "^1.12.4",
"@types/recursive-readdir": "^2.2.0",
"@types/request": "^2.47.0",
"@types/supertest": "^2.0.3",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.4.4",
"@types/ws": "^3.2.0",
"@types/yargs": "^11.1.1",
"@types/zen-observable": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^2.3.2",
"@typescript-eslint/parser": "^2.3.2",
"@types/download": "^6.2.4",
"cross-env": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"fs": "0.0.1-security",
"jest": "25.1.0",
"jest-cli": "25.1.0",
"jest-environment-node-debug": "2.0.0",
"jest-image-snapshot": "2.8.2",
"jest-transform-graphql": "2.1.0",
"mkdirp": "^0.5.1",
"nodemon": "^1.18.5",
"prettier": "^1.19.1",
"puppeteer": "^1.16.0",
"ts-jest": "25.1.0"
}
}