-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.95 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.95 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
{
"name": "www",
"version": "1.0.0",
"description": "React Frontend of epic mail project",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --coverage --verbose --forceExit",
"build:client": "webpack --production",
"build:server": "babel src/server.js --out-file public/server.js",
"dev": "webpack-dev-server",
"start": "node public/server.js",
"heroku-postbuild": "npm run build:client && npm run build:server"
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/__mocks__/styleMock.js"
},
"setupFiles": [
"<rootDir>/__mocks__/localStorage.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/caleb-42/react-epic-mail.git"
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^1.2.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.2",
"copy-webpack-plugin": "^5.0.3",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"formik": "^1.5.8",
"hamburgers": "^1.1.3",
"ignore-loader": "^0.1.2",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-awesome-slider": "^1.0.1",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-responsive-modal": "^4.0.1",
"react-router-dom": "^5.0.1",
"react-toastify": "^5.3.2",
"redux": "^4.0.1",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.3.0",
"tailwindcss": "^1.0.4",
"webpack": "^4.34.0",
"yup": "^0.27.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.6",
"babel-loader": "^8.0.6",
"babel-plugin-module-resolver": "^3.2.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-react": "^7.13.0",
"fetch-mock": "^7.3.9",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-fetch-mock": "^2.1.2",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-loader": "^3.0.0",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.3.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/caleb-42/react-epic-mail/issues"
},
"homepage": "https://github.com/caleb-42/react-epic-mail#readme",
"browserslist": [
"last 2 version",
"> 2%"
]
}