-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.01 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
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ssconnect",
"version": "0.1.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build-storybook": "build-storybook -s public",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"precommit": "lint-staged",
"s2s": "s2s",
"storybook": "start-storybook -p 9009 -s public",
"test": "node scripts/test.js --env=jsdom"
},
"dependencies": {
"@material-ui/core": "1.5.1",
"@material-ui/icons": "1.1.1",
"@material-ui/lab": "1.0.0-alpha.12",
"lodash": "4.17.15",
"moment": "2.24.0",
"normalizr": "3.4.1",
"query-string": "6.8.3",
"rc-slider": "8.7.1",
"rc-tooltip": "3.7.3",
"react": "16.10.2",
"react-dom": "16.10.2",
"react-redux": "5.1.2",
"react-router-dom": "4.3.1",
"superagent": "3.8.3"
},
"devDependencies": {
"@storybook/addon-actions": "3.4.12",
"@storybook/addon-links": "3.4.12",
"@storybook/react": "3.4.12",
"camelcase-keys-recursive": "0.8.3",
"coveralls": "3.0.7",
"react-scripts": "3.2.0",
"eslint-config-react-app": "5.0.2",
"eslint-plugin-flowtype": "4.3.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"flow-bin": "0.109.0",
"husky": "3.0.9",
"lint-staged": "7.3.0",
"prettier": "1.18.2",
"redux": "4.0.4",
"redux-persist": "5.10.0",
"redux-thunk": "2.3.0",
"s2s": "0.20.1",
"s2s-plugins-redux": "0.4.8",
"storybook-addon-material-ui": "0.8.11",
"styled-components": "3.4.10"
},
"homepage": "https://ssconnect.anozon.me",
"lint-staged": {
"*.js": [
"prettier --config ./.prettierrc --write",
"git add"
]
},
"private": true,
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js",
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,mjs}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,mjs}"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
},
"babel": {
"presets": [
"react-app"
]
},
"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"
]
}
}