-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.07 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
{
"name": "ge-design-system",
"description": "Garcia Enterprise react design system",
"version": "0.6.3",
"main": "dist/index.js",
"repository": "git@github.com:Garcia-Enterprise/ge-design.git",
"author": "Eric N. Garcia <engarcia618@gmail.com>",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "BABEL_ENV=production babel src -d dist",
"test": "react-scripts test",
"test:ci": "CI=true react-scripts test",
"eject": "react-scripts eject",
"format": "prettier --write \"src/**/*.{scss,css,js,md,mdx}\"",
"format:diff": "prettier --check \"src/**/*.{scss,css,js,md,mdx}\"",
"storybook": "start-storybook -p 9009",
"build-storybook": "build-storybook",
"build-storybook-docs": "build-storybook --docs",
"release": "auto shipit",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"polished": "^4.3.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@auto-it/all-contributors": "^10.46.0",
"@auto-it/conventional-commits": "^10.46.0",
"@auto-it/twitter": "^10.46.0",
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@eng618/prettier-config": "^2.1.0",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-knobs": "^6.4.0",
"@storybook/addon-links": "^6.5.16",
"@storybook/addon-storysource": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/preset-create-react-app": "^4.1.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"auto": "^10.46.0",
"babel-loader": "^9.1.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.15",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8"
},
"babel": {
"presets": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"auto": {
"plugins": [
[
"twitter",
{
"threshold": "patch"
}
],
"npm",
"all-contributors",
[
"conventional-commits",
{
"defaultReleaseType": "patch"
}
],
"released"
]
},
"prettier": "@eng618/prettier-config",
"lint-staged": {
"src/**/*.(js|ts)?(x)": "eslint . --fix",
"*.(js|md|ts)?(x)": "prettier --write",
"*.(scss|css|json)": "prettier --write"
},
"packageManager": "yarn@4.1.1"
}