-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
133 lines (133 loc) Β· 4.08 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
{
"name": "bema",
"version": "0.0.0-dripip",
"repository": "[email protected]:prisma-labs/bema.git",
"author": "Prisma Data Inc.",
"license": "MIT",
"files": [
"dist-cjs",
"dist-esm",
"types.js",
"types.d.ts"
],
"bin": {
"bema": "./dist-cjs/cli/index.js",
"b": "./dist-cjs/cli/index.js"
},
"exports": {
".": {
"require": "./dist-cjs/index.js",
"import": "./dist-esm/index.js"
},
"./types": {
"require": "./dist-cjs/entrypoints/types.js",
"import": "./dist-esm/entrypoints/types.js"
}
},
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"scripts": {
"bema": "ts-node --transpile-only src/cli",
"format": "yarn format:prettier && yarn format:imports",
"format:prettier": "prettier --write .",
"format:imports": "format-imports src && format-imports tests",
"format:check": "yarn -s format:check:imports && yarn -s format:check:prettier",
"format:check:imports": "format-imports --check src tests",
"format:check:prettier": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"dev": "yarn -s clean && ttsc --build --watch",
"build": "yarn clean && yarn build:module-facades && yarn build:cjs && yarn build:esm",
"build:module-facades": "ts-node scripts/build-module-facades",
"build:cjs": "ttsc --project tsconfig.cjs.json",
"build:esm": "ttsc --project tsconfig.esm.json",
"test": "cross-env FORCE_COLOR=1 jest",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache types.d.ts types.js",
"release:pr": "dripip pr",
"release:canary": "dripip preview",
"release:stable": "dripip stable",
"prepublishOnly": "yarn -s build"
},
"dependencies": {
"@fast-csv/format": "^4.3.5",
"@fast-csv/parse": "^4.3.6",
"@octokit/rest": "^18.6.2",
"@types/benchmark": "^2.1.0",
"@types/columnify": "^1.5.0",
"@types/microtime": "^2.1.0",
"arg": "^5.0.0",
"benchmark": "^2.1.4",
"bluebird": "^3.7.2",
"bytes": "^3.1.0",
"columnify": "^1.5.4",
"debug": "^4.3.1",
"decompress": "^4.2.1",
"download": "^8.0.0",
"endent": "^2.1.0",
"execa": "^5.1.1",
"fast-csv": "^4.3.6",
"fast-glob": "^3.2.5",
"fs-jetpack": "^4.1.0",
"got": "^10",
"kleur": "^4.1.4",
"lodash": "^4.17.21",
"markdown-table": "2.0.0",
"microtime": "^3.0.0",
"next": "^11.0.1",
"next-transpile-modules": "^8.0.0",
"parse-git-config": "^3.0.0",
"parse-github-url": "^1.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"slugify": "^1.5.3",
"strip-ansi": "^6",
"ts-custom-error": "^3.2.0",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"type-fest": "^1.2.1",
"typescript": "^4.3.4",
"verror": "^1.10.0",
"victory": "^35.9.0"
},
"devDependencies": {
"@homer0/prettier-plugin-jsdoc": "4.0.0",
"@octokit/types": "6.16.6",
"@prisma-labs/prettier-config": "0.1.0",
"@types/bluebird": "3.5.35",
"@types/bytes": "3.1.0",
"@types/debug": "4.1.5",
"@types/decompress": "4.2.3",
"@types/download": "8.0.0",
"@types/jest": "26.0.23",
"@types/lodash": "4.14.170",
"@types/markdown-table": "2.0.0",
"@types/node": "15.12.4",
"@types/react": "17.0.11",
"@types/react-dom": "17.0.8",
"@types/ts-nameof": "4.2.1",
"@types/verror": "1.10.4",
"@typescript-eslint/eslint-plugin": "4.28.0",
"@typescript-eslint/parser": "4.28.0",
"cross-env": "7.0.3",
"dripip": "0.10.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-only-warn": "1.0.2",
"format-imports": "2.4.0",
"jest": "27.0.5",
"jest-watch-select-projects": "2.0.0",
"jest-watch-suspend": "1.1.2",
"jest-watch-typeahead": "0.6.4",
"prettier": "2.3.1",
"ts-jest": "27.0.3",
"ts-nameof": "5.0.0",
"ttypescript": "1.5.12",
"typescript-snapshots-plugin": "1.7.0",
"typescript-transform-paths": "3.0.0"
},
"importSorter": {
"emptyLinesBetweenGroups": 0,
"wrappingStyle": "prettier",
"trailingComma": "multiLine"
}
}