-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.88 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
{
"name": "react-simple-signin-practice",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.3",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "3.4.1",
"typescript": "~4.3.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"test:nowatch": "react-app-rewired test --watchAll=false",
"lint:es": "./node_modules/.bin/eslint --ext=ts --ext=tsx --ext=js --ext=jsx . --ignore-path .eslintignore",
"lint:style": "./node_modules/.bin/stylelint --config=.stylelintrc.json '**/*.css' '**/*.scss' '**/*.sass' '**/*.less'",
"lint": "run-s lint:*",
"fix:lint:es": "./node_modules/.bin/eslint --ext=ts --ext=tsx --ext=js --ext=jsx . --ignore-path .eslintignore --fix",
"fix:lint:style": "./node_modules/.bin/stylelint --config=.stylelintrc.json '**/*.css' '**/*.scss' '**/*.sass' '**/*.less' --fix",
"fix:lint": "run-s fix:lint:*",
"fix:prettier": "./node_modules/.bin/prettier --config .prettierrc.json --write '**/*.{ts, tsx, js,jsx,scss,css}'",
"fix": "run-s fix:*",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public",
"deploy-storybook": "storybook-to-ghpages"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"eslintConfig": {
"extends": "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"
]
},
"devDependencies": {
"@storybook/addon-a11y": "^6.3.2",
"@storybook/addon-actions": "^6.3.6",
"@storybook/addon-info": "^5.3.21",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-links": "^6.3.6",
"@storybook/addon-storysource": "^6.3.6",
"@storybook/addon-viewport": "^6.3.4",
"@storybook/addons": "^6.3.6",
"@storybook/preset-create-react-app": "^3.0.1",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^6.1.21",
"@storybook/storybook-deployer": "^2.8.3",
"customize-cra": "^1.0.0",
"eslint": "^6.8.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.1",
"prettier": "2.3.2",
"react-app-rewired": "^2.1.8",
"react-docgen-typescript-loader": "^3.7.2",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-webpack-plugin": "^2.2.2",
"ts-loader": "^8.0.10"
}
}