-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.48 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
{
"name": "@gliff-ai/curate",
"version": "1.0.0",
"description": "gliff.ai CURATE",
"repository": "git://github.com/gliff-ai/curate.git",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx vite build -c vite.config.lib.ts && tsc --emitDeclarationOnly --outDir dist && tsc-alias -p tsconfig.json && npm run build:patch",
"watch": "npx vite build -c vite.config.lib.ts --watch",
"format": "npx --no-install prettier --write src/**/*.ts* *.js",
"prettier": "npx --no-install prettier -c src/**/*.ts* *.js",
"lint": "npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src/**/*.ts*",
"serve": "vite",
"build:example": "vite build",
"test": "jest --coverage --passWithNoTests",
"build:patch": "sed -i 's/const generateClassName$1 = createGenerateClassName();/const generateClassName$1 = createGenerateClassName({seed:\"\",disableGlobal:true,productionPrefix:\"jss-curate-\"});/g' dist/index.es.js"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/preset-env": "^7.18.9",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@gliff-ai/eslint-config": "^0.2.4",
"@gliff-ai/style": "^16.3.1",
"@gliff-ai/upload": "^1.3.0",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.2",
"@mui/styles": "^5.9.2",
"@mui/x-data-grid": "^5.15.0",
"@percy/cli": "^1.7.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"@types/resize-observer-browser": "^0.1.7",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "^0.14.51",
"eslint": "^7.32.0",
"history": "5.0.1",
"jest": "^27.5.1",
"prettier": "=2.3.0",
"react": "^17.0.0",
"react-dom": "^17.0.2",
"ts-jest": "^27.1.5",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vite-aliases": "^0.8.7"
},
"peerDependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@gliff-ai/style": "^16.2.0",
"@gliff-ai/upload": "^1.2.5",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@mui/styles": "^5.8.0",
"@mui/x-data-grid": "^5.12.0",
"history": "5.0.1",
"react": "^17.0.0",
"react-dom": "^17.0.1"
},
"dependencies": {
"react-inlinesvg": "^2.3.0"
}
}