-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.5 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
{
"name": "@knovator/masters-admin",
"version": "3.1.0",
"description": "Package for integrating Masters, Submasters functionality in React projects",
"main": "dist/index.js",
"module": "dist/masters-admin.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"global.d.ts"
],
"repository": {
"type": "git",
"url": "git@github.com:knovator/masters-admin.git"
},
"keywords": [
"masters",
"submasters",
"knovator",
"chavda-bhavik"
],
"exports": {
".": {
"import": "./dist/masters-admin.esm.js",
"require": "./dist/index.js"
},
"./dist/": "./dist/"
},
"husky": {
"hooks": {
"pre-commit": "dts lint"
}
},
"scripts": {
"analyze": "size-limit --why",
"build": "dts build && yarn build:tailwind",
"lint": "dts lint",
"prepare": "dts build && yarn build:tailwind",
"size": "size-limit",
"watch": "dts watch",
"start": "concurrently \"dts watch\" \"yarn watch:tailwind\"",
"test": "dts test --passWithNoTests",
"build:tailwind": "cross-env NODE_ENV=production npx tailwindcss -i ./src/style.css -c ./tailwind.config.js -o ./dist/style.css --minify",
"watch:tailwind": "cross-env NODE_ENV=production npx tailwindcss -i ./src/style.css -c ./tailwind.config.js -o ./dist/style.css --watch"
},
"author": "knovator (https://knovator.com/)",
"license": "MIT",
"private": false,
"prettier": {
"printWidth": 120,
"arrowParens": "always",
"semi": false,
"tabWidth": 4,
"trailingComma": "all",
"endOfLine": "auto"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest.setup.ts"
]
},
"devDependencies": {
"@knovator/api": "^0.0.10",
"@size-limit/preset-small-lib": "^7.0.8",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@tsconfig/create-react-app": "^1.0.2",
"@tsconfig/recommended": "^1.0.1",
"@types/react-dom": "^18.0.6",
"@types/react-dropzone": "^5.1.0",
"@types/react-table": "^7.7.12",
"@types/react-transition-group": "^4.4.5",
"autoprefixer": "^10.4.7",
"classnames": "^2.3.1",
"concurrently": "^7.4.0",
"cross-env": "^7.0.3",
"dts-cli": "^1.5.2",
"husky": "^8.0.1",
"msw": "^0.42.3",
"postcss": "^8.4.14",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.1",
"react-hook-form": "^7.32.2",
"react-table": "^7.8.0",
"react-transition-group": "^4.4.2",
"tailwindcss": "^3.1.4",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/masters-admin-updated.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/masters-admin-updated.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"@knovator/api": "^0.0.10",
"react": ">=17.0.1",
"react-dom": ">=17.0.1",
"react-hook-form": "^7.32.2",
"react-table": "^7.8.0"
},
"dependencies": {
"@types/react-beautiful-dnd": "^13.1.2",
"react-beautiful-dnd": "^13.1.0"
}
}