-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "reactjs-stats-code-challenge",
"version": "1.0.0",
"description": "Develop a Single Page App (SPA) that shows a simple dashboard that displays four tiles, each displaying a single statistic for a dataset that is retrieved via a REST API call. The user should be able to request new data to be loaded and to see the statistics in the tiles update to reflect the new dataset.",
"private": true,
"dependencies": {
"axios": "^0.19.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"framer-motion": "^2.1.4",
"http-status-codes": "^1.4.0",
"morgan": "^1.10.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-scripts": "3.4.1",
"styled-components": "^5.1.1"
},
"scripts": {
"start:client": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll",
"cypress": "cypress open",
"cypress:e2e": "cypress run --record --spec 'cypress/integration/dashboard/end-to-end.spec.js'",
"eject": "react-scripts eject",
"server": "node-env-run server --exec nodemon",
"start": "run-p server start:client"
},
"proxy": "http://localhost:5000",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"jest-styled-components": "^7.0.2",
"react-test-renderer": "^16.13.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/user-event": "^7.1.2",
"axios-mock-adapter": "^1.18.2",
"cypress": "^4.11.0",
"jasmine": "^3.6.1",
"jasmine-node": "^3.0.0",
"jasmine-reporter-console": "^1.1.0",
"node-env-run": "^3.0.2",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5"
},
"wallaby": {
"autoDetect": true
}
}