-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.93 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
{
"name": "flight-sim-helpers",
"version": "0.1.0",
"private": true,
"homepage": "https://fmichea.github.io/flightsim-tools",
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.16.8",
"babel-loader": "^8.1.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"moment-timezone": "^0.5.33",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-page-visibility": "^6.4.0",
"react-redux": "^7.2.4",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-scroll": "^1.8.4",
"recompose": "^0.30.0",
"redux": "^4.1.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"reset-css": "^5.0.1",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.1",
"uuid": "^8.3.2"
},
"scripts": {
"start": "REACT_APP_IS_LOCAL_SERVER=true react-scripts start",
"start-unclean": "REACT_APP_IS_LOCAL_SERVER=true DISABLE_ESLINT_PLUGIN=true react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint 'src/**/*.jsx'",
"lint-fix": "eslint --fix 'src/**/*.jsx'",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"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-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/node-logger": "^6.4.0",
"@storybook/preset-create-react-app": "^3.2.0",
"@storybook/react": "^6.4.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.0",
"@types/antd": "^1.0.0",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/react": "^17.0.15",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.5.0",
"storybook": "^6.4.0",
"styletron-engine-snapshot": "^0.1.5"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/setupTests.jsx",
"!src/tests/**/*.{js,jsx}"
]
}
}