-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.64 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
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "typescript-web-starter-kit",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "7.7.2",
"@ib/api": "2.0.2",
"@ib/api-constants": "1.0.8",
"@ib/mobx-promise": "1.0.8",
"@ib/nebula-system": "0.0.234",
"@types/jest": "27.0.1",
"@types/node": "16.9.2",
"@types/react": "17.0.21",
"@types/react-dom": "17.0.9",
"apisauce": "1.1.2",
"autoprefixer": "^9",
"classnames": "2.2.6",
"env-cmd": "10.0.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-react": "7.16.0",
"husky": "3.1.0",
"i18next": "19.0.1",
"i18next-xhr-backend": "3.2.2",
"js-cookie": "2.2.1",
"lint-staged": "9.4.3",
"madge": "3.6.0",
"mobx": "5.15.0",
"mobx-react": "6.1.4",
"postcss": "^7",
"react": "17.0.2",
"react-datepicker": "4.2.1",
"react-dom": "17.0.2",
"react-horizontal-scrolling-menu": "0.7.3",
"react-i18next": "11.2.2",
"react-icons": "4.3.1",
"react-infinite-scroll-component": "5.0.3",
"react-loader-spinner": "3.1.5",
"react-modal": "3.11.1",
"react-router-dom": "5.3.0",
"react-scripts": "4.0.3",
"react-select": "4.3.1",
"react-toastify": "8.0.2",
"styled-components": "5.3.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"twin.macro": "2.7.0",
"typescript": "4.4.3",
"yarnhook": "0.4.3"
},
"scripts": {
"e2e:start": "yarn run cypress open",
"start": "TAILWIND_MODE=watch craco start",
"build": "craco build",
"build:staging": "env-cmd -f .env.staging npm run build",
"test": "IS_JEST=true react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --ignore-path .gitignore --fix --ext .ts,.tsx src/",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"engines": {
"npm": ">=5.6.0",
"yarn": ">=1.3.2",
"node": ">=8.11.3"
},
"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": {
"@babel/core": "7.7.2",
"@babel/plugin-proposal-decorators": "7.7.0",
"@babel/plugin-syntax-jsx": "7.2.0",
"@babel/preset-env": "7.7.1",
"@craco/craco": "^6.2.0",
"@storybook/addon-actions": "6.3.1",
"@storybook/addon-controls": "6.3.8",
"@storybook/addon-links": "6.3.8",
"@storybook/addon-notes": "5.3.21",
"@storybook/addons": "6.3.8",
"@storybook/preset-create-react-app": "3.2.0",
"@storybook/react": "6.3.8",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "12.1.0",
"@types/react-router-dom": "5.1.9",
"@types/storybook__react": "5.2.1",
"@typescript-eslint/eslint-plugin": "2.3.0",
"@typescript-eslint/parser": "2.8.0",
"cypress": "3.8.0",
"eslint-config-prettier": "6.3.0",
"eslint-plugin-prettier": "3.1.0",
"prettier": "1.19.1"
},
"husky": {
"hooks": {
"pre-commit": " madge --format es6 --circular src/ && lint-staged && tsc --noEmit --skipLibCheck ",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"babelMacros": {
"twin": {
"preset": "styled-components",
"config": "src/tailwind.config.js",
"autoCssProp": true
}
},
"resolutions": {
"babel-loader": "8.1.0"
}
}