-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
{
"name": "@epam/uui-db",
"version": "5.1.2",
"description": "UUI - client-side relational state cache",
"author": "EPAM",
"license": "MIT",
"main": "index.js",
"epam:uui:main": "build/index.esm.js",
"typings": "index.d.ts",
"scripts": {
"build": "node ../uui-build/scripts/buildModule",
"perf": "npx ts-node -T ./src/__benchmarks__/index.ts",
"perf-prof": "node -r ts-node/register/transpile-only --prof ./src/__benchmarks__/index.ts",
"prepublish": "yarn build"
},
"dependencies": {
"@epam/uui-core": "5.1.2",
"@types/lodash.countby": "4.6.6",
"@types/lodash.filter": "4.6.6",
"@types/lodash.foreach": "4.5.6",
"@types/lodash.groupby": "4.6.6",
"@types/lodash.isempty": "4.4.6",
"@types/lodash.isequal": "4.5.5",
"@types/lodash.map": "4.6.13",
"@types/lodash.merge": "4.6.6",
"@types/lodash.orderby": "4.6.6",
"@types/lodash.pick": "4.4.6",
"@types/lodash.range": "3.2.6",
"@types/lodash.sortby": "4.7.6",
"@types/lodash.transform": "4.6.6",
"@types/lodash.zip": "4.2.6",
"@types/shallowequal": "^1.1.1",
"immutable": "3.8.2",
"lodash.countby": "4.6.0",
"lodash.filter": "4.6.0",
"lodash.foreach": "4.5.0",
"lodash.groupby": "4.6.0",
"lodash.isempty": "4.4.0",
"lodash.isequal": "4.5.0",
"lodash.map": "4.6.0",
"lodash.merge": "4.6.2",
"lodash.orderby": "4.6.0",
"lodash.pick": "4.4.0",
"lodash.range": "3.2.0",
"lodash.sortby": "4.7.0",
"lodash.transform": "4.6.0",
"lodash.zip": "4.2.0",
"shallowequal": "^1.1.0",
"sorted-btree": "^1.2.1"
},
"devDependencies": {
"@types/benchmark": "^1.0.31",
"benny": "^3.6.14",
"ts-node": "10.9.1"
},
"peerDependencies": {
"prop-types": "*",
"react": ">=16.0.0",
"react-dom": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/epam/UUI"
},
"gitHead": "f0d58123e11e321e4417e3bba7dc6c5c9026998c",
"publishConfig": {
"directory": "build"
}
}