-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.2 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
{
"name": "@eclass/ui-kit",
"description": "Elementos UI transversales eClass",
"version": "1.51.15",
"files": [
"dist"
],
"main": "dist/eclass-ui-kit.umd.js",
"module": "dist/eclass-ui-kit.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/eclass-ui-kit.es.js",
"require": "./dist/eclass-ui-kit.umd.js"
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eclass/ui-kit"
},
"bugs": {
"url": "https://github.com/eclass/ui-kit/issues"
},
"homepage": "https://github.com/eclass/ui-kit#readme",
"author": "Team eClass (https://www.eclass.cl/)",
"contributors": [
"Alvaro Alvarez <[email protected]>",
"Sebastián González Riffo <[email protected]>"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && npm run build:types && npm run copy-dts",
"build:types": "tsc -p tsconfig.types.json",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"serve": "vite preview",
"test": "jest --coverage",
"test-local": "jest --watch",
"lint": "npm run format && npm run eslint",
"format": "prettier --write 'src/**/*.{ts,tsx,mdx}'",
"eslint": "eslint 'src/**/*.{ts,tsx,mdx}' --fix --cache",
"lint:check": "eslint 'src/**/*.{ts,tsx,mdx}'",
"ts-compile-check": "tsc -p tsconfig.json",
"prepare": "ts-patch install -s && node ./prepare.js",
"deploy": "VITE_REACT_DEPLOY_DOCUMENTATION=DOCUMENTATION vite build"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^16.8 || 17.x",
"react-dom": "^16.8 || 17.x"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@fontsource/lora": "4.5.13",
"@fontsource/roboto": "4.5.8",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "9.0.1",
"@testing-library/dom": "8.20.1",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "14.4.3",
"@types/eclass__api": "git+ssh://[email protected]/eclass/types-eclass-api.git#v3.108.0",
"@types/eclass__sequelize-models": "git+ssh://[email protected]/eclass/types-sequelize-models.git#v5.40.0",
"@types/jest": "27.5.2",
"@types/node": "^16.11.17",
"@types/react": "17.0.64",
"@types/react-dom": "17.0.20",
"@typescript-eslint/eslint-plugin": "5.17.0",
"@typescript-eslint/parser": "5.17.0",
"@vitejs/plugin-react": "1.3.2",
"copyfiles": "2.4.1",
"eslint": "8.46.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-react": "11.0.1",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-jest": "25.7.0",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-mdx": "1.17.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-testing-library": "5.11.1",
"gh-pages": "^6.0.0",
"graphql": "^16.8.1",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.5.1",
"jest-watch-typeahead": "1.0.0",
"lint-staged": "12.3.7",
"localforage": "1.10.0",
"match-sorter": "6.3.1",
"prettier": "2.6.1",
"react": "17.0.2",
"react-code-blocks": "0.1.6",
"react-dom": "17.0.2",
"react-router-dom": "6.14.2",
"semantic-release": "18.0.1",
"sort-by": "1.2.0",
"ts-jest": "27.1.5",
"ts-patch": "2.0.1",
"typescript": "4.9.5",
"typescript-transform-paths": "3.3.1",
"vite": "2.9.16",
"vite-tsconfig-paths": "3.4.1"
},
"dependencies": {
"@chakra-ui/react": "1.8.9",
"@emotion/react": "11.8.2",
"@emotion/styled": "11.8.1",
"date-fns": "^4.1.0",
"framer-motion": "6.2.8",
"react-hot-toast": "2.4.1",
"react-ripples": "2.2.1"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}