-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.6 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
{
"name": "@gliff-ai/manage",
"version": "1.0.0",
"description": "gliff.ai MANAGE",
"repository": "git://github.com/gliff-ai/manage.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",
"prettier": "npx --no-install prettier -c src",
"lint": "tsc --noEmit && npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src",
"serve": "vite",
"build:example": "npx vite build",
"test": "jest --coverage --passWithNoTests",
"build:patch": "sed -i 's/const generateClassName$1 = createGenerateClassName();/const generateClassName$1 = createGenerateClassName({seed:\"\",disableGlobal:true,productionPrefix:\"jss-manage-\"});/g' dist/index.es.js",
"test:e2e": "percy exec -v -- jest -c jest.e2e.config.js --no-colors -i"
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@gliff-ai/eslint-config": "^0.2.4",
"@gliff-ai/jest-browserstack-automate": "^6.0.8",
"@gliff-ai/style": "^16.3.1",
"@mui/icons-material": "^5.10.2",
"@mui/material": "^5.10.2",
"@mui/styles": "^5.10.2",
"@mui/x-data-grid": "^5.15.3",
"@percy/cli": "1.0.0-beta.76",
"@percy/sdk-utils": "1.0.0-beta.76",
"@percy/selenium-webdriver": "1.0.0",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.5.2",
"@types/react": "^17.0.48",
"@types/react-dom": "^17.0.17",
"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",
"react-router-dom": "^6.3.0",
"rollup": "^2.78.1",
"ts-jest": "^27.1.5",
"tsc-alias": "^1.7.0",
"typescript": "^4.7.4",
"vite": "^2.9.15",
"vite-aliases": "^0.8.7"
},
"peerDependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@gliff-ai/style": "^16.0.0",
"@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",
"react-router-dom": "^6.2.1"
},
"dependencies": {
"axios": "^0.27.2",
"react-inlinesvg": "^2.3.0"
}
}