-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 2.83 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
99
100
101
{
"name": "M-Tracker-React-Client",
"version": "1.0.0",
"description": "M-Tracker-React-Client is a front-end client Powered by React.JS and Redux to support my previous Node.JS API for Maintenance-Tracker App.",
"main": "webpack.config.js",
"jest": {
"setupFiles": [
"./src/tests/setupTests.js"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"moduleNameMapper": {
"\\.(css|jpg|png|svg)$": "<rootDir>/empty-module.js"
},
"bail": true,
"collectCoverageFrom": [
"src/app/**/*.*"
],
"coverageReporters": [
"cobertura",
"html",
"text",
"text-summary"
]
},
"scripts": {
"test": "jest --env=jsdom --coverage --forceExit",
"watch": "jest --watch",
"dev": "webpack-dev-server --hot --open --mode development",
"build": "webpack --mode production",
"start": "babel-node index.js",
"coverage": "jest --env=jsdom --coverage --forceExit --coverageReporters=text-lcov | coveralls",
"update:snap": "jest --updateSnapshot --coverage --forceExit && npm test -- -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chukwuemekachm/M-Tracker-React-Client.git"
},
"keywords": [
"React.JS",
"Redux",
"jest",
"enzyme",
"Client",
"Node.JS",
"Front-end"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/chukwuemekachm/M-Tracker-React-Client/issues"
},
"homepage": "https://github.com/chukwuemekachm/M-Tracker-React-Client#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"express": "^4.16.3",
"fetch-mock": "^7.0.7",
"fetch-reply-with": "^1.2.9",
"lodash": "^4.17.11",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-mock-store": "^1.5.3",
"redux-thunk": "^2.3.0",
"sinon": "^6.3.5",
"toastr": "^2.1.4"
},
"devDependencies": {
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.5",
"coveralls": "^3.0.2",
"css-loader": "^1.0.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"nyc": "^12.0.2",
"react-test-renderer": "^16.4.2",
"style-loader": "^0.22.1",
"supertest": "^3.1.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
}
}