-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
141 lines (141 loc) · 4.15 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "initiate2",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "7.0.0-beta.46",
"@babel/runtime": "7.0.0-beta.46",
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/free-solid-svg-icons": "^5.3.1",
"@fortawesome/react-fontawesome": "^0.1.3",
"autoprefixer": "8.5.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "8.2.3",
"babel-jest": "22.4.3",
"babel-loader": "8.0.0-beta.0",
"babel-plugin-named-asset-import": "1.0.0-next.3e165448",
"babel-polyfill": "^6.26.0",
"babel-preset-react-app": "4.0.0-next.3e165448",
"bfj": "5.2.0",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chalk": "2.4.1",
"classnames": "^2.2.6",
"css-loader": "0.28.11",
"dotenv": "^5.0.1",
"dotenv-expand": "4.2.0",
"eslint": "4.19.1",
"eslint-config-react-app": "3.0.0-next.3e165448",
"eslint-loader": "2.0.0",
"eslint-plugin-flowtype": "2.46.3",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.8.2",
"file-loader": "1.1.11",
"fs-extra": "5.0.0",
"graphql": "0.13.2",
"graphql-tag": "2.9.2",
"html-webpack-plugin": "3.2.0",
"identity-obj-proxy": "3.0.0",
"jest": "22.4.3",
"jwt-decode": "^2.2.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.10",
"mini-css-extract-plugin": "^0.4.0",
"moment": "^2.22.2",
"node-sass-chokidar": "^1.3.3",
"npm-run-all": "^4.1.3",
"object-assign": "4.1.1",
"optimize-css-assets-webpack-plugin": "^4.0.1",
"postcss-flexbugs-fixes": "3.3.1",
"postcss-loader": "2.1.5",
"pouchdb": "^7.0.0",
"promise": "8.0.1",
"raf": "3.4.0",
"react": "^16.4.2",
"react-dev-utils": "6.0.0-next.3e165448",
"react-dom": "^16.4.2",
"react-error-overlay": "^1.0.9",
"react-modal": "^3.5.1",
"react-redux": "^5.0.5",
"react-sortable-hoc": "^0.8.2",
"react-transition-group": "^2.4.0",
"redux": "^4.0.0",
"redux-localstorage": "^0.4.1",
"redux-pouchdb": "github:joshleecreates/redux-pouchdb",
"redux-saga": "^0.16.0",
"reselect": "^3.0.1",
"resolve": "1.6.0",
"sass-loader": "7.0.1",
"style-loader": "0.21.0",
"svgr": "1.9.2",
"sw-precache-webpack-plugin": "0.11.5",
"thread-loader": "1.1.5",
"uglifyjs-webpack-plugin": "1.2.5",
"url-loader": "1.0.1",
"webpack": "4.8.3",
"webpack-dev-server": "3.1.4",
"webpack-manifest-plugin": "2.0.3",
"whatwg-fetch": "2.0.4"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "node scripts/start.js",
"start": "npm-run-all -p watch-css start-js",
"build-js": "node scripts/build.js",
"build": "npm-run-all build-css build-js",
"test": "node scripts/test.js --env=jsdom"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}"
],
"setupFiles": [
"<rootDir>/config/polyfills.js"
],
"testMatch": [
"**/__tests__/**/*.{js,jsx,mjs}",
"**/?(*.)(spec|test).{js,jsx,mjs}"
],
"roots": [
"<rootDir>/src"
],
"testEnvironment": "node",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx|mjs)$": "<rootDir>/config/jest/babelTransform.js",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^.+\\.(graphql)$": "<rootDir>/config/jest/graphqlTransform.js",
"^(?!.*\\.(js|jsx|mjs|css|json|graphql)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|mjs)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node",
"mjs"
]
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.25%",
"not op_mini all",
"ie 11"
]
}
}