-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.22 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
{
"name": "nasa-dashboard",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^5.9.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/node": "^16.6.2",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@types/react-modal": "^3.12.1",
"@types/uuid": "^8.3.1",
"axios": "^0.21.1",
"axios-mock-adapter": "^1.20.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"install": "^0.13.0",
"npm": "^7.21.0",
"react": "^17.0.2",
"react-datepicker": "^4.3.0",
"react-dom": "^17.0.2",
"react-globe": "5.0.2",
"react-icons": "^4.2.0",
"react-media": "^1.10.0",
"react-modal": "^3.14.3",
"react-pro-sidebar": "^0.6.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-spinners": "^0.11.0",
"react-xarrows": "^2.0.2",
"three": "0.109.0",
"typescript": "^4.3.5",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"test-coverage": "craco test --coverage --watchAll=false",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.1",
"@types/mockdate": "^3.0.0",
"@types/react-datepicker": "^4.1.7",
"@types/react-router-dom": "^5.1.8",
"autoprefixer": "^9.8.6",
"eslint-config-prettier": "^8.3.0",
"jest": "^27.1.0",
"mockdate": "^3.0.5",
"postcss": "^7.0.36",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.7"
},
"jest": {
"moduleNameMapper": {
"^@src(.*)$": "<rootDir>/src$1"
},
"transformIgnorePatterns": [
"\\.pnp\\.[^\\/]+$"
],
"testMatch": [
"<rootDir>/src/App.test.tsx",
"<rootDir>/src/tests/**/*.test.*"
]
}
}