-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
112 lines (112 loc) · 3.08 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
{
"name": "sample-app",
"proxy": "http://localhost:3001",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7",
"dateformat": "^3.0.3",
"prop-types": "^15.6.2",
"react": "^15.5.4",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.5.4",
"react-redux": "^5.0.4",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.8",
"react-spinner": "^0.2.7",
"react-transition-group": "^1.1.3",
"redux": "^3.6.0",
"redux-actions": "^2.6.4",
"redux-auth-wrapper": "^1.1.0",
"redux-logger": "^3.0.6",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"sendgrid": "^5.2.3",
"truevault": "^1.3.0"
},
"devDependencies": {
"autoprefixer": "9.4.7",
"babel-core": "6.26.3",
"babel-eslint": "10.0.1",
"babel-jest": "24.1.0",
"babel-loader": "6.2.10",
"babel-preset-react-app": "^2.2.0",
"babel-runtime": "^6.26.0",
"btoa": "^1.2.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"chalk": "2.4.2",
"command-line-args": "^5.0.2",
"command-line-usage": "^5.0.5",
"connect-history-api-fallback": "1.6.0",
"cross-spawn": "6.0.5",
"css-loader": "0.26.1",
"detect-port": "1.3.0",
"dotenv": "6.2.0",
"eslint": "5.13.0",
"eslint-config-react-app": "^3.0.6",
"eslint-loader": "2.1.2",
"eslint-plugin-flowtype": "3.2.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "3.0.1",
"form-data": "^2.3.3",
"fs-extra": "7.0.1",
"html-webpack-plugin": "3.2.0",
"http-proxy-middleware": "0.19.1",
"jest": "24.1.0",
"json-loader": "0.5.7",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"object-assign": "4.1.1",
"postcss-loader": "1.2.2",
"promise": "8.0.2",
"randomstring": "^1.1.5",
"react-dev-utils": "^0.5.2",
"sass-loader": "^7.1.0",
"style-loader": "0.23.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2",
"webpack-manifest-plugin": "2.0.4",
"whatwg-fetch": "3.0.0"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"tv-account-setup": "node scripts/tv-account-setup.js"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testPathIgnorePatterns": [
"<rootDir>[/\\\\](build|docs|node_modules|scripts)[/\\\\]"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web"
}
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"extends": "react-app"
}
}