-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.34 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
{
"name": "@gliff-ai/style",
"version": "14.0.0",
"description": "Theme styles for gliff.ai apps",
"main": "dist/index.es.js",
"module": "dist/index.es.js",
"typings": "dist/src/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*",
"prettier": "npx --no-install prettier -c src/**/*.ts*",
"lint": "tsc --noEmit && npm run lint:ts && npm run prettier",
"lint:ts": "npx --no-install eslint src/**/*.ts*",
"serve:example": "vite",
"serve:storybook": "start-storybook -p 6006",
"build:example": "vite build",
"build:storybook": "build-storybook",
"snapshot": "build-storybook && percy-storybook --width=320,1280",
"test": "jest --coverage --passWithNoTests",
"build:patch": "sed -i 's/const generateClassName$1 = createGenerateClassName();/const generateClassName$1 = createGenerateClassName({seed:\"\",disableGlobal:true,productionPrefix:\"jss-style-\"});/g' dist/index.es.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliff-ai/style.git"
},
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/gliff-ai/style/issues"
},
"homepage": "https://github.com/gliff-ai/style#readme",
"devDependencies": {
"@babel/core": "^7.18.6",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@gliff-ai/eslint-config": "^0.2.4",
"@mui/icons-material": "^5.8.4",
"@mui/material": "^5.9.0",
"@mui/styles": "^5.9.0",
"@mui/system": "^5.9.0",
"@mui/x-data-grid": "^5.13.1",
"@percy/cli": "^1.6.1",
"@percy/storybook": "^4.3.0",
"@storybook/addon-actions": "^6.5.8",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-vite": "^0.1.41",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.12",
"@types/jest": "^26.0.24",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"babel-loader": "^8.2.5",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-mui-unused-classes": "^1.0.3",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.13",
"jest": "^28.1.3",
"prettier": "=2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "2.74.1",
"tsc-alias": "^1.6.11",
"typescript": "^4.7.4",
"vite": "^2.9.14",
"vite-aliases": "^0.8.7"
},
"peerDependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@mui/styles": "^5.8.0",
"@mui/system": "^5.8.1",
"@mui/x-data-grid": "^5.12.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"react-inlinesvg": "^2.3.0"
}
}