-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.29 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.29 KB
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": "koa-react-notes-web",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"@craco/craco": "^5.6.4",
"@testing-library/jest-dom": "^5.1.1",
"@testing-library/react": "^10.0.1",
"@testing-library/user-event": "^10.0.0",
"@types/classnames": "^2.2.9",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.3",
"@types/react": "^16.9.0",
"@types/react-bootstrap": "^1.0.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-router-bootstrap": "^0.24.5",
"@types/react-router-dom": "^5.1.3",
"@types/react-toast-notifications": "^2.4.0",
"@types/uuid": "^7.0.2",
"@types/yup": "^0.26.34",
"antd": "^4.0.4",
"axios": "^0.19.2",
"axios-auth-refresh": "^2.2.4",
"bootstrap": "^4.4.1",
"classnames": "^2.2.6",
"eslint-config-airbnb": "^18.1.0",
"formik": "^2.1.4",
"history": "^4.10.1",
"jwt-decode": "^2.2.0",
"node-sass": "^4.13.1",
"react": "^16.13.1",
"react-bootstrap": "^1.0.0",
"react-dom": "^16.13.1",
"react-error-boundary": "^1.2.5",
"react-ga": "^2.7.0",
"react-icons": "^3.10.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-bootstrap": "^0.25.0",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-toast-notifications": "^2.4.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"sanitize.css": "^11.0.0",
"typescript": "~3.8.3",
"uuid": "^7.0.3",
"yup": "^0.28.3"
},
"scripts": {
"watch": "craco start",
"build": "rm -rf ./dist && npm run test:build && npm run lint && npm run lint-styles && craco build && mv build dist",
"test": "craco test --watchAll=false",
"test:build": "npm run test",
"lint": "tsc --noEmit && eslint './src/**/*.{js,ts,tsx}' --quiet --fix",
"lint-styles": "npx stylelint \"**/*.scss\" --config .stylelintrc.js --fix",
"storybook:build": "build-storybook -s public",
"storybook:test": "npm run storybook:build -- --smoke-test",
"storybook:watch": "start-storybook -p 9009 -s public"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"ie 10"
],
"development": [
"last 2 chrome version",
"last 2 firefox version",
"last 2 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-create-react-app": "^2.1.1",
"@storybook/react": "^5.3.18",
"@types/jwt-decode": "^2.2.1",
"@typescript-eslint/parser": "^3.0.2",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-functional": "^3.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"install": "^0.13.0",
"npm": "^6.14.4",
"prettier": "^2.0.4",
"stylelint": "^13.3.3",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-declaration-strict-value": "^1.2.3",
"stylelint-order": "^4.0.0",
"stylelint-scss": "^3.17.1",
"stylelint-webpack-plugin": "^1.2.3",
"webpack-bundle-analyzer": "^3.7.0"
}
}