-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.84 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
{
"name": "store-manager-react",
"version": "1.0.0",
"description": "Store Manager React consumes the store manager api",
"main": "index.js",
"engines": {
"node": "10.15.0",
"npm": "6.4.1"
},
"scripts": {
"start": "webpack-dev-server --open --mode development",
"build": "webpack --mode production",
"test": "jest -u --watch",
"coverage": "jest -u --coverage --colors",
"heroku-prebuild": "npx rimraf package-lock.json npm-shrinkwrap.json node_modules && npm install yarn && yarn install",
"heroku-postbuild": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oma0256/store-manager-react.git"
},
"author": "Jonathan Omarwoth",
"license": "ISC",
"bugs": {
"url": "https://github.com/oma0256/store-manager-react/issues"
},
"homepage": "https://github.com/oma0256/store-manager-react#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/polyfill": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.5.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"axios": "^0.18.0",
"bootstrap": "^4.3.1",
"express": "^4.16.4",
"jest-localstorage-mock": "^2.4.0",
"react": "^16.8.5",
"react-bootstrap": "^1.0.0-beta.6",
"react-dom": "^16.8.5",
"react-redux": "^6.0.1",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0"
}
}