-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.48 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
{
"name": "booksys-client",
"version": "0.1.0",
"private": true,
"homepage": "https://rxluz.github.io/booksys",
"author": "Ricardo Luz <[email protected]>",
"license": "MIT",
"dependencies": {
"@geometricpanda/storybook-addon-badges": "^0.2.1",
"@sentry/react": "^6.13.3",
"@sentry/tracing": "^6.13.3",
"@storybook/addon-storysource": "^6.3.10",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"colors": "^1.4.0",
"detect-browser": "^5.0.0",
"detect-browser-language": "0.0.2",
"http-status-codes": "^2.1.4",
"husky": "^7.0.2",
"is-mobile": "^2.2.1",
"lodash": "^4.17.15",
"node-sass": "^4.14.0",
"qs": "^6.10.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-icons": "^3.10.0",
"react-keyboard-shortcuts": "^1.1.3",
"react-redux": "^7.2.0",
"react-responsive-pagination": "^1.2.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-tippy": "^1.3.4",
"react-toggle": "^4.1.1",
"redux": "^4.0.5",
"redux-i18n": "^1.5.19",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"uuid": "^7.0.3"
},
"scripts": {
"client:start": "react-scripts start",
"client:build": "PUBLIC_URL=https://rxluz.github.io/booksys && react-scripts build",
"client:deploy": "npm run client:build && npm run client:build-storybook && npm run client:bundle-analysis && npm run client:build-storybook && CI=true react-scripts test --coverage --silent && cd build && cd .. && cp -r ./coverage ./build/coverage && npm run client:lighthouse && gh-pages -d build",
"client:test": "react-scripts test",
"client:test:coverage": "CI=true react-scripts test --coverage",
"client:lighthouse": "mkdir -p ./build/lighthouse && npx lighthouse https://rxluz.github.io/booksys/ --output-path=./build/lighthouse/report.html",
"client:bundle-analysis": "npx cra-bundle-analyzer -r bundle-analysis.htm",
"client:eject": "react-scripts eject",
"client:translation:extract": "i18n_extract --pattern=translate --source=src --locales=src/common/locales",
"client:translation:import": "i18n_import --translations=src/common/locales --locales=src/common/locales",
"client:storybook": "start-storybook -p 6006 -s public",
"client:build-storybook": "build-storybook -s public -o build/storybook",
"client:cypress:open": "cypress open"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"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.10",
"@storybook/addon-actions": "^6.3.10",
"@storybook/addon-essentials": "^6.3.10",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/addon-links": "^6.3.10",
"@storybook/node-logger": "^6.3.10",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.3.10",
"cra-bundle-analyzer": "^0.1.0",
"cypress": "^8.5.0",
"gh-pages": "^2.2.0",
"redux-devtools": "^3.5.0",
"redux-devtools-extension": "^2.13.8",
"storybook-addon-designs": "^6.2.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.9.0"
}
}