-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.23 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
{
"name": "SendIT-React",
"version": "1.0.0",
"description": "SendIT is a courier service that helps users deliver parcels to different destinations. SendIT provides courier quotes based on weight categories.",
"main": "index.js",
"scripts": {
"test": "jest -u --coverage",
"test:watch": "jest --watch",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"start": "webpack-dev-server --open --hot --mode development --https",
"build": "webpack --mode production"
},
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickf949/SendIT-React.git"
},
"keywords": [],
"author": "p@rick",
"license": "ISC",
"bugs": {
"url": "https://github.com/patrickf949/SendIT-React/issues"
},
"homepage": "https://github.com/patrickf949/SendIT-React#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"classnames": "^2.2.6",
"coverage": "^0.3.3",
"coveralls": "^3.0.3",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jwt-decode": "^2.2.0",
"moxios": "^0.4.0",
"node-sass": "^4.12.0",
"react-loader": "^2.4.5",
"react-test-renderer": "^16.8.6",
"react-toast": "^0.1.0",
"react-toastify": "^5.1.1",
"redux-devtools-extension": "^2.13.8",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"dependencies": {
"axios": "^0.18.0",
"css-loader": "^2.1.1",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-loader-spinner": "^2.3.0",
"react-redux": "^7.0.3",
"react-router-dom": "^5.0.0",
"redux": "^4.0.1"
}
}