drizzle-kit 0.9.22 → 0.9.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +17413 -88546
- package/package.json +10 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drizzle-kit",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.26",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": "https://github.com/lambda-direct/drizzle-kit",
|
|
6
6
|
"author": "Alex Blokh <aleksandrblokh@gmail.com>",
|
|
@@ -10,61 +10,37 @@
|
|
|
10
10
|
},
|
|
11
11
|
"scripts": {
|
|
12
12
|
"start": "ts-node ./src/index.ts",
|
|
13
|
-
"watch": "
|
|
13
|
+
"watch": "esbuild ./src/cli/index.tsx --bundle --platform=node --target=node10.4 --outfile=./dist/index.js --external:esbuild --watch",
|
|
14
14
|
"diff": "ts-node ./src/diff.ts",
|
|
15
|
-
"
|
|
15
|
+
"sim": "ts-node ./dev/simulate.ts",
|
|
16
|
+
"test": "jest --silent",
|
|
16
17
|
"imports": "ts-node ./test.ts",
|
|
17
18
|
"build": "esbuild ./src/cli/index.tsx --bundle --platform=node --target=node10.4 --outfile=./dist/index.js --external:esbuild"
|
|
18
19
|
},
|
|
19
20
|
"dependencies": {
|
|
20
|
-
"
|
|
21
|
-
"@xstate/react": "^1.6.1",
|
|
21
|
+
"cli-table": "^0.3.11",
|
|
22
22
|
"commander": "^8.0.0",
|
|
23
23
|
"enquirer": "^2.3.6",
|
|
24
24
|
"esbuild": "^0.14.2",
|
|
25
|
-
"immer": "^9.0.6",
|
|
26
|
-
"immer-reducer": "^0.7.13",
|
|
27
|
-
"ink": "3.0.9",
|
|
28
|
-
"ink-divider": "^3.0.0",
|
|
29
|
-
"ink-router": "0.6.0",
|
|
30
|
-
"ink-select-input": "4.2.0",
|
|
31
|
-
"ink-spinner": "^4.0.3",
|
|
32
|
-
"ink-table": "3.0.0",
|
|
33
|
-
"ink-text-input": "^4.0.1",
|
|
34
25
|
"js-yaml": "^4.1.0",
|
|
35
26
|
"json-diff": "^0.5.4",
|
|
27
|
+
"loading-cli": "^1.1.0",
|
|
36
28
|
"pretty-error": "^3.0.4",
|
|
37
|
-
"react": "^16.14.0",
|
|
38
29
|
"source-map-support": "^0.5.19",
|
|
39
|
-
"use-immer": "^0.6.0",
|
|
40
|
-
"uuid": "^8.3.2",
|
|
41
|
-
"valtio": "^1.2.4",
|
|
42
30
|
"xstate": "^4.25.0"
|
|
43
31
|
},
|
|
44
32
|
"devDependencies": {
|
|
45
|
-
"@types/
|
|
33
|
+
"@types/jest": "^27.0.3",
|
|
46
34
|
"@types/js-yaml": "^4.0.3",
|
|
47
|
-
"@types/lodash.flatten": "^4.4.6",
|
|
48
|
-
"@types/object-hash": "2.1.1",
|
|
49
35
|
"@types/pg": "^8.6.1",
|
|
50
|
-
"@types/react": "^17.0.13",
|
|
51
|
-
"@types/vorpal": "^1.12.1",
|
|
52
|
-
"@types/webpack": "^5.28.0",
|
|
53
36
|
"@typescript-eslint/eslint-plugin": "4.4.1",
|
|
54
|
-
"drizzle-orm": "^0.
|
|
37
|
+
"drizzle-orm": "^0.10.2",
|
|
55
38
|
"eslint": "^7.2.0",
|
|
56
39
|
"eslint-config-airbnb": "18.2.1",
|
|
57
40
|
"eslint-config-airbnb-typescript": "11.0.0",
|
|
58
41
|
"eslint-plugin-import": "^2.22.1",
|
|
59
|
-
"
|
|
60
|
-
"eslint-plugin-react": "^7.21.5",
|
|
61
|
-
"eslint-plugin-react-hooks": "^1.7.0",
|
|
62
|
-
"prettier": "^2.3.2",
|
|
42
|
+
"jest": "^27.4.5",
|
|
63
43
|
"source-map-loader": "^3.0.0",
|
|
64
|
-
"
|
|
65
|
-
"webpack": "^5.42.0",
|
|
66
|
-
"webpack-cli": "^4.7.2",
|
|
67
|
-
"webpack-node-externals": "^3.0.0",
|
|
68
|
-
"webpack-shebang-plugin": "^1.1.6"
|
|
44
|
+
"ts-jest": "^27.1.2"
|
|
69
45
|
}
|
|
70
46
|
}
|