forked from mariamiah/Store-Manager-React-Redux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.31 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
97
98
99
100
101
102
103
104
105
{
"name": "store-manager-react",
"version": "1.0.0",
"description": "Store Manager is a web application that helps store owners manage sales and product inventory records. This application is meant for use in a single store.",
"main": "index.js",
"engines": {
"node": "10.15.1"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": " jest --collectCoverage",
"dev": "webpack-dev-server --open --mode development --hot ",
"build": "webpack --mode production --open --hot",
"heroku-postbuild": "npm run build",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"start": "node server.js"
},
"dependencies": {
"@babel/cli": "^7.2.3",
"argon-design-system-free": "^1.0.1",
"babel-polyfill": "^6.26.0",
"dotenv": "^6.2.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"expect": "^24.1.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"file-loader": "^3.0.1",
"image-webpack-loader": "^4.6.0",
"jest-fetch-mock": "^2.1.1",
"jsonwebtoken": "^8.5.0",
"loaders.css": "^0.1.2",
"prop-types": "^15.7.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-facebook-login": "^4.1.1",
"react-google-login": "^5.0.2",
"react-loaders": "^3.0.1",
"react-redux": "^6.0.1",
"react-responsive-modal": "^3.6.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-toastify": "^4.5.2",
"redux": "^4.0.1",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.85.0",
"sinon": "^7.2.7",
"yarn": "^1.13.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/polyfill": "^7.0.0-beta.51",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^2.1.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"fetch-mock": "^7.3.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.1.0",
"jest-localstorage-mock": "^2.4.0",
"node-fetch": "^2.3.0",
"node-sass": "^4.11.0",
"redux-devtools": "^3.5.0",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.3",
"webpack-visualizer-plugin": "^0.1.11"
},
"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)$": "identity-obj-proxy"
},
"setupFiles": [
"jest-localstorage-mock"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setUpJest.js"
]
}
}