This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.7 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
{
"name": "cofe",
"version": "0.1.0",
"description": "No-Code System",
"keywords": [
"react",
"chakra-ui",
"json-schema",
"jsonschema",
"dsl",
"low-code",
"no-code",
"lowcode",
"nocode",
"next.js",
"unist"
],
"private": true,
"workspaces": [
".",
"packages/*"
],
"license": "MIT",
"author": "crossjs <liwenfu@crossjs.com>",
"repository": "git@github.com:crossjs/cofe.git",
"scripts": {
"commit": "cz",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:e2e": "playwright test",
"postinstall": "chakra-cli tokens ./src/theme/index.ts"
},
"dependencies": {
"@chakra-ui/hooks": "^1.8.4",
"@chakra-ui/react": "^1.8.6",
"@chakra-ui/theme-tools": "^1.3.4",
"@cofe/atoms": "^0.1.0",
"@cofe/core": "^0.1.0",
"@cofe/form": "^0.1.0",
"@cofe/gssp": "^0.1.0",
"@cofe/hooks": "^0.1.0",
"@cofe/icons": "^0.1.0",
"@cofe/logger": "^0.1.0",
"@cofe/types": "^0.1.0",
"@cofe/ui": "^0.1.0",
"@cofe/utils": "^0.1.0",
"@dnd-kit/core": "^5.0.2",
"@dnd-kit/modifiers": "^5.0.0",
"@dnd-kit/sortable": "^6.0.1",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11.6.0",
"cookie": "^0.4.2",
"framer-motion": "^6.3.0",
"idb-keyval": "^6.1.0",
"lodash-es": "^4.17.21",
"next": "^12.1.5",
"next-transpile-modules": "^9.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"recoil": "^0.7.0",
"shallowequal": "^1.1.0",
"shelljs": "^0.8.5",
"unified": "^10.1.2",
"unist-builder": "^3.0.0",
"unist-util-filter": "^4.0.0",
"unist-util-map": "^3.0.1",
"unist-util-modify-children": "^3.0.0",
"unist-util-parents": "^2.0.0",
"unist-util-remove": "^3.1.0",
"unist-util-select": "^4.0.1",
"unist-util-visit": "^4.1.0"
},
"devDependencies": {
"@chakra-ui/cli": "^1.9.0",
"@cofe/babel-preset-cofe": "^0.0.1",
"@cofe/eslint-config-cofe": "^0.0.2",
"@playwright/test": "^1.20.1",
"@testing-library/react": "^12.1.4",
"@types/cookie": "^0.5.0",
"@types/jest": "^27.4.1",
"@types/json-schema": "^7.0.11",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.43",
"@types/react-test-renderer": "^17.0.1",
"@types/shallowequal": "^1.1.1",
"assert": "^2.0.0",
"babel-jest": "^27.5.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"jest": "^27.5.0",
"prettier": "^2.6.2",
"process": "^0.11.10",
"react-test-renderer": "^18.0.0",
"typescript": "^4.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}