-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.98 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
{
"name": "send-it-react",
"version": "1.0.0",
"description": "SendIT is a delivery service that allow users to send parcels to different destinations.",
"main": "index.js",
"scripts": {
"start": "node ./dist/server.js",
"start-dev": "webpack-dev-server --config ./webpack.config.js --mode development",
"build": "rm -rf dist && webpack --mode production",
"coverage": "cat ./coverage/lcov.info | coveralls && rm -rf coverage",
"pretest": "rm -rf __snapshots__",
"test": "NODE_ENV=test jest --coverage -u",
"test:watch": "npm test -- --watch",
"lint": "eslint . --fix --ignore-path .eslintignore"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./setup.config.js"
],
"moduleNameMapper": {
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
".+\\.(css|less|scss)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/teepha/send-it-react.git"
},
"keywords": [],
"author": "teepha",
"license": "ISC",
"bugs": {
"url": "https://github.com/teepha/send-it-react/issues"
},
"homepage": "https://github.com/teepha/send-it-react#readme",
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.0",
"babel-loader": "^8.0.5",
"babel-polyfill": "^6.26.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^5.0.0",
"coveralls": "^3.0.3",
"css-loader": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.14.1",
"eslint-config-airbnb": "^17.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",
"file-loader": "^3.0.1",
"identity-obj-proxy": "^3.0.0",
"ignore-styles": "^5.0.1",
"jest": "^24.7.0",
"jest-transform-stub": "^2.0.0",
"jsdom": "^13.2.0",
"mocha": "^6.0.2",
"moxios": "^0.4.0",
"redux-mock-store": "^1.5.3",
"sinon": "^7.3.1",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"dependencies": {
"axios": "^0.18.0",
"express": "^4.16.4",
"jwt-decode": "^2.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-md-spinner": "^0.3.0",
"react-modal": "^3.8.1",
"react-redux": "^6.0.1",
"react-router-dom": "^4.3.1",
"react-toastify": "^4.5.2",
"redux": "^4.0.1",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.3.0"
}
}