-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
105 lines (105 loc) · 2.85 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
{
"name": "react-boilerplate",
"version": "0.1.0",
"description": "Boilerplate to develop new application",
"private": false,
"author": {
"name": "vinoth kumar"
},
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"axios": "^0.23.0",
"bootstrap": "^4.6.0",
"formik": "^2.2.9",
"history": "^4.10.1",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-bootstrap": "^1.6.4",
"react-custom-scrollbars": "^4.2.1",
"react-dom": "^17.0.2",
"react-redux": "^7.2.5",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-toastify": "^8.0.3",
"redux": "^4.1.1",
"redux-thunk": "^2.3.0",
"styled-components": "^5.3.1",
"typescript": "^4.4.3",
"web-vitals": "^1.1.2",
"yup": "^0.32.10"
},
"scripts": {
"start": "dotenv -e .env-development react-scripts start",
"start-staging": "dotenv -e .env-staging react-scripts start",
"start-production": "dotenv -e .env-production react-scripts start",
"build-staging": "dotenv -e .env-staging react-scripts build",
"build": "dotenv -e .env-production react-scripts build",
"test": "dotenv -e .env-development react-scripts test -- --coverage --coverageDirectory=coverage/jest --watchAll=false",
"test-dev": "dotenv -e .env-development react-scripts test",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.tsx"
],
"rules": {
"no-console": 1
}
},
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"jest": {
"coverageReporters": [
"text",
"cobertura"
]
},
"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-actions": "^6.3.9",
"@storybook/addon-essentials": "^6.3.9",
"@storybook/addon-links": "^6.3.9",
"@storybook/node-logger": "^6.3.9",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.9",
"@types/react-router-dom": "^5.3.0",
"@types/redux-thunk": "^2.1.0",
"@types/styled-components": "^5.1.14",
"dotenv-cli": "^4.0.0",
"storybook-addon-styled-component-theme": "^2.0.0",
"storybook-formik": "^2.1.8"
}
}