-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.86 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
{
"name": "react-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "10.0.28",
"@emotion/styled": "10.0.27",
"@ib/api": "1.0.8",
"@ib/api-constants": "1.0.8",
"@ib/mobx-promise": "1.0.8",
"@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.8.0",
"babel-plugin-macros": "2.8.0",
"js-cookie": "2.2.1",
"mobx": "5.15.0",
"mobx-react": "6.1.4",
"postcss-cli": "7.1.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.0",
"tailwind.macro": "1.0.0-alpha.10",
"typescript": "3.8.3"
},
"scripts": {
"build:css": "postcss src/styles/index.css -o src/styles/tailwind.css",
"watch:css": "postcss src/styles/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",
"ts:start": "npm run watch:css & react-scripts start",
"ts:build": "npm run build:css & react-scripts build",
"ts:test": "react-scripts test --env=jest-environment-jsdom-sixteen",
"ts: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,jsx,ts,tsx}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
]
},
"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",
"husky": "4.2.5",
"jest-environment-jsdom-sixteen": "1.0.3",
"lint-staged": "10.2.6",
"react-app-rewired": "2.1.5",
"tailwindcss": "1.4.6"
}
}