-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.66 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.66 KB
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
{
"name": "@app/miniapp",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "jest",
"prepare": "node ./bin/prepare.js",
"dev": "yarn build:deps && node ./../../bin/keystone-dev.js",
"debug": "node inspect node_modules/.bin/keystone dev --port 3001",
"build:deps": "turbo build --filter=miniapp^... --filter=!condo",
"build": "yarn build:deps && keystone build",
"start": "keystone start",
"kmigrator": "./../../bin/kmigrator.py",
"makemigrations": "./../../bin/kmigrator.py makemigrations",
"migrate": "./../../bin/kmigrator.py migrate",
"maketypes": "mkdir -p dist/admin && NODE_ENV=test node ./../../bin/create-graphql-schema.js && graphql-codegen -c codegen.yaml",
"createschema": "./../../bin/createschema"
},
"dependencies": {
"@apollo/client": "3.3.20",
"@app/condo": "workspace:^",
"@condo/domains": "link:../condo/domains",
"@emotion/babel-plugin": "^11.10.0",
"@emotion/core": "^10.1.1",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.10.0",
"@keystonejs/adapter-knex": "^13.2.0",
"@keystonejs/adapter-mongoose": "^11.2.0",
"@keystonejs/adapter-prisma": "^3.2.0",
"@keystonejs/app-admin-ui": "^7.5.0",
"@keystonejs/app-graphql": "^6.3.0",
"@keystonejs/app-next": "^5.2.3",
"@keystonejs/app-static": "^5.2.0",
"@keystonejs/auth-password": "^6.1.0",
"@keystonejs/fields": "^22.1.3",
"@keystonejs/fields-color": "^1.1.0",
"@keystonejs/fields-content": "^9.1.0",
"@keystonejs/fields-location-google": "^3.4.0",
"@keystonejs/fields-wysiwyg-tinymce": "^5.4.0",
"@keystonejs/file-adapters": "^7.1.0",
"@keystonejs/keystone": "19.3.4",
"@keystonejs/list-plugins": "^8.1.0",
"@keystonejs/server-side-graphql-client": "^2.1.0",
"@keystonejs/utils": "^6.1.0",
"@miniapp/domains": "link:./domains",
"@open-condo/bridge": "workspace:^",
"@open-condo/cli": "workspace:^",
"@open-condo/codegen": "workspace:^",
"@open-condo/config": "workspace:^",
"@open-condo/keystone": "workspace:^",
"@open-condo/next": "workspace:^",
"@welldone-software/why-did-you-render": "^5.0.0-alpha.1",
"@zeit/next-css": "^1.0.1",
"@zeit/next-less": "^1.0.1",
"ajv": "8.11.0",
"antd": "^4.8.2",
"classnames": "2.2.6",
"dayjs": "^1.10.6",
"emotion": "^10.0.27",
"emotion-server": "^10.0.27",
"express": "^4.17.1",
"facepaint": "^1.2.1",
"faker": "^5.5.3",
"get-contrast": "^2.0.0",
"graphql": "^15.6.1",
"graphql-tag": "^2.12.6",
"immer": "9.0.21",
"less": "^3.12.2",
"lodash": "^4.17.21",
"next": "^9.5.5",
"next-transpile-modules": "^4.1.0",
"numeral": "2.0.6",
"openid-client": "4.7.4",
"qs": "6.11.0",
"rc-queue-anim": "^1.8.5",
"rc-table": "~7.25.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-fittext": "^1.0.0",
"react-markdown": "^4.3.1",
"react-responsive": "^8.1.0",
"react-test-renderer": "^16.13.1",
"use-immer": "^0.4.1",
"uuid": "^8.3.0",
"validator": "^13.1.1"
},
"devDependencies": {
"@testing-library/react": "^11.2.5",
"@types/jest": "26.0.24",
"@types/node": "^14.18.21",
"@types/react": "16.9.17",
"antd-dayjs-webpack-plugin": "^1.0.6",
"babel-jest": "^26.6.3",
"css-loader": "1.0.1",
"extracted-loader": "^1.0.7",
"identity-obj-proxy": "^3.0.0",
"ignore-loader": "0.1.2",
"jest": "^26.6.3",
"jest-watch-typeahead": "0.6.5",
"less-loader": "^4.0.0",
"pluralize": "^8.0.0",
"raw-loader": "^4.0.2",
"typescript": "^4.1.5",
"webpack": "^4.46.0"
},
"repository": "https://github.com/open-condo-software/condo/tree/master/apps/miniapp"
}