-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.84 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
{
"name": "react-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@ib/api": "2.0.0",
"@ib/api-constants": "1.0.8",
"@ib/api-utils": "2.0.0",
"@ib/mobx-promise": "1.0.8",
"@material-ui/core": "4.10.1",
"@types/jest": "25.2.1",
"@types/node": "13.11.0",
"@types/react": "16.9.32",
"@types/react-dom": "16.9.6",
"apisauce": "1.1.1",
"autoprefixer": "^9.7.5",
"babel-plugin-macros": "^2.8.0",
"bootstrap": "4.5.0",
"date-fns": "2.14.0",
"datepicker-moment": "2.0.2",
"js-cookie": "2.2.1",
"mobx": "5.15.0",
"mobx-react": "6.1.4",
"moment": "2.26.0",
"postcss-cli": "^7.1.0",
"react": "^16.13.0",
"react-bootstrap": "1.0.1",
"react-datepicker": "2.16.0",
"react-datetime": "2.16.3",
"react-dom": "^16.13.0",
"react-loader-spinner": "3.1.14",
"react-moment": "0.9.7",
"react-paginate": "6.3.2",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.0",
"react-select": "3.1.0",
"react-test-renderer": "16.13.1",
"react-toastify": "6.0.5",
"semantic-ui-react": "0.88.2",
"tailwind.macro": "^1.0.0-alpha.10",
"typescript": "3.8.3"
},
"scripts": {
"build:css": "postcss src/index.css -o src/styles/tailwind.css",
"watch:css": "postcss src/index.css -o src/styles/tailwind.css",
"start": "npm run watch:css & react-app-rewired start",
"build": "npm run build:css & react-app-rewired build",
"test": "react-app-rewired test --env=jest-environment-jsdom-sixteen",
"eject": "react-app-rewired eject",
"coverage": "react-app-rewired test --env=jest-environment-jsdom-sixteen --coverage --watchAll=false",
"js:start": "npm run watch:css & react-scripts start",
"js:build": "npm run build:css & react-scripts build",
"js:test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"js:eject": "react-scripts eject",
"deploy": "export PUBLIC_URL=/2019/$C9_USER/react && npm run build && ./deploy.sh",
"storybook": "start-storybook -p 8080 -s public",
"build-storybook": "build-storybook -s public",
"pretty": "npx prettier --write \"src/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint src/*.js --fix-dry-run"
]
},
"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",
"@storybook/addon-actions": "5.3.18",
"@storybook/addon-docs": "5.3.18",
"@storybook/addon-knobs": "5.3.18",
"@storybook/addon-links": "5.3.18",
"@storybook/addon-storysource": "5.3.18",
"@storybook/addons": "5.3.18",
"@storybook/preset-create-react-app": "2.1.2",
"@storybook/react": "5.3.18",
"@testing-library/jest-dom": "5.5.0",
"@testing-library/react": "10.0.3",
"babel-eslint": "10.0.3",
"customize-cra": "0.9.1",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"husky": "4.2.5",
"jest-environment-jsdom-sixteen": "1.0.3",
"lint-staged": "10.2.6",
"react-app-rewired": "2.1.5",
"tailwindcss": "^1.2.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageForm": [
"src/*.{ts,tsx,js,jsx}"
]
}
}