-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.8 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.8 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
{
"name": "react-testing-tutorial",
"version": "0.1.0",
"private": true,
"nyc": {
"check-coverage": true,
"lines": 90,
"include": [
"src/**/*.js",
"src/**/*.jsx"
],
"exclude": [
"src/**/*-compiled.js",
"dist",
"flow-typed"
],
"extension": [
".jsx"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"all": true
},
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.1.6",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"axios": "^0.19.0",
"materialize-css": "^1.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-materialize": "^3.3.3",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "0.9.x",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"axios-mock-adapter": "^1.17.0",
"babel-core": "^7.0.0-bridge.0",
"chokidar": "^2.0.4",
"connect-history-api-fallback": "^1.5.0",
"cors": "^2.8.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"expect": "^24.8.0",
"express": "^4.16.4",
"faker": "^4.1.0",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"json-server": "^0.14.2",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^14.1.1",
"redux-mock-store": "^1.5.3",
"sinon": "^7.3.2"
},
"scripts": {
"start": "npm-run-all --parallel reactstart apistart",
"reactstart": "react-scripts start",
"apistart": "node server.js",
"build": "react-scripts build",
"test": "mocha --require @babel/register test/browser.js 'test/**/*.spec.{js,jsx}'",
"coverage": "nyc _mocha test/browser.js 'test/**/*.spec.{js,jsx}' --timeout=3000"
}
}