-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
172 lines (172 loc) · 5.58 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "@factiverse/design-system",
"description": "Factiverse Design System is a reusable component library that helps Factiverse contributors build UIs faster. The goal is to make building durable UIs more productive and satisfying.",
"repository": {
"type": "git",
"url": "git+https://github.com/factiverse/storybook-design-system.git"
},
"author": "Tobias Tykvart",
"license": "Unlicensed",
"version": "0.6.0",
"private": false,
"bugs": {
"url": "https://github.com/factiverse/storybook-design-system/issues"
},
"homepage": "https://github.com/factiverse/storybook-design-system#readme",
"scripts": {
"generate": "node ./util/create-component",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build-storybook-docs": "build-storybook --docs",
"chromatic": "npx chromatic --project-token=e8130cbb59b8 --exit-once-uploaded",
"deploy": "storybook-to-ghpages",
"prebuild": "rimraf build",
"build": "tsc --outDir build --declarationDir build --declaration true && rollup -c",
"publish": "npm run build",
"build:local": "npm run build && npm pack",
"build:publish": "npm run build && npm publish",
"release": "auto shipit --base-branch=main",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:pre:alpha": "standard-version --prerelease alpha",
"test": "jest --coverage && eslint src",
"test:watch": "jest --coverage --watchAll --json --outputFile=testOutput.json",
"test-storybook": "test-storybook",
"test-storybook:watch": "test-storybook --watch",
"test-storybook:browsers": "test-storybook --browsers firefox chromium webkit"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"overrides": [
{
"files": [
"src/components/*.tsx"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"files": [
"build"
],
"main": "build/index.js",
"module": "build/esm/index.js",
"types": "build/index.d.ts",
"dependencies": {
"@mui/styles": "^5.11.11",
"classnames": "^2.3.1",
"i18next": "^21.9.2",
"react-string-replace": "^1.1.0",
"reactjs-popup": "^2.0.5"
},
"peerDependencies": {
"@babel/plugin-transform-runtime": "^7.18.5",
"react": "^17.0.1",
"react-dom": "^17.0.2"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.3.1"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-plugin": "^7.17.7",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.21.0",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.11",
"@mui/material": "^5.11.11",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.3.3",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-jest": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/node-logger": "^6.5.16",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.5.16",
"@storybook/storybook-deployer": "^2.8.16",
"@storybook/test-runner": "^0.9.3",
"@storybook/testing-library": "^0.0.13",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"auto": "^10.43.0",
"babel-jest": "^29.4.3",
"babel-loader": "^8.2.3",
"chromatic": "^6.17.1",
"colors": "^1.4.0",
"css-loader": "^6.7.3",
"email-validator": "^2.0.4",
"eslint": "^8.35.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.58.3",
"sass-loader": "^13.0.2",
"storybook-addon-material-ui5": "^1.0.0",
"storybook-mobile": "^1.0.0",
"style-loader": "^3.3.1",
"styled-components": "^5.3.6",
"typescript": "^4.9.5"
}
}