-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.6 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
{
"name": "ah-frontend-valkyrie",
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/andela/ah-frontend-valkyrie.git"
},
"engines": {
"node": "10.15.1"
},
"scripts": {
"test": "jest --detectOpenHandles --coverage",
"test:w": "jest --watch --coverage",
"test:coverage": "jest --coverage --colors",
"eject": "react-scripts eject",
"start": "node server.js",
"build": "webpack --mode production",
"heroku-postbuild": "npm run build",
"test:watch": "jest --watchAll"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/moxios": "^0.4.8",
"add": "^2.0.6",
"axios": "^0.18.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"classnames": "^2.2.6",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"email-validator": "^2.0.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-config-airbnb": "^17.1.0",
"expect": "^24.1.0",
"express": "^4.16.4",
"express-favicon": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"fetch-mock": "^7.3.0",
"file-loader": "^3.0.1",
"firebase": "^5.8.3",
"html-loader": "^0.5.5",
"html-react-parser": "^0.6.1",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.1.0",
"jwt-decode": "^2.2.0",
"moment": "^2.24.0",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "^16.8.1",
"react-confirm-alert": "^2.3.0",
"react-dom": "^16.8.1",
"react-facebook-login": "^4.1.1",
"react-firebaseui": "^3.1.2",
"react-google-login": "^5.0.2",
"react-moment": "^0.8.4",
"react-quill": "^1.3.3",
"react-rating": "^1.6.2",
"react-redux": "^6.0.0",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.5",
"react-tabs": "^3.0.0",
"react-test-renderer": "^16.8.1",
"react-toastify": "^4.5.2",
"react-toasts": "^3.0.0",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"sfcookies": "^1.0.2",
"sinon": "^7.2.4",
"style-loader": "^0.23.1",
"typescript": "^3.3.3",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"yarn": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"@types/moxios": "^0.4.8",
"axios-mock-adapter": "^1.16.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^5.14.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"expect": "^24.1.0",
"moxios": "^0.4.0",
"node-sass": "^4.11.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.8.1",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"sinon": "^7.2.4",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack-dev-server": "^3.1.14"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.('jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2)$": "<rootDir>/src/fileMock.js",
"\\.(css|scss)$": "<rootDir>/src/styleMock.js"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/enzyme.config.js"
]
},
"heroku-run-build-script": true
}