-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
{
"scripts": {
"dev": "webpack --mode development --watch",
"start": "nodemon server",
"test": "jest --watch"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.1",
"connect-mongo": "^2.0.1",
"css-loader": "^0.28.11",
"dotenv": "^5.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.7",
"jest": "^22.4.2",
"jest-css-modules-transform": "^1.0.5",
"mini-css-extract-plugin": "^0.2.0",
"mongoose": "^5.0.11",
"morgan": "^1.9.0",
"node-sass": "^4.7.2",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sass-loader": "^6.0.7",
"standard": "^11.0.0",
"standard-loader": "^6.0.1",
"style-loader": "^0.20.3",
"tapable": "1.0.0-beta.5",
"transform-runtime": "^0.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.11"
},
"dependencies": {
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2"
},
"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"
}
}
}