forked from Course-Allocation-Problem/cap-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.04 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
{
"name": "cap-app",
"version": "1.1.0",
"private": true,
"dependencies": {
"@syncfusion/ej2-react-schedule": "^18.4.42",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/user-event": "^12.7.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.1",
"bootstrap": "^4.6.0",
"dotenv": "^16.3.1",
"email-validator": "^2.0.4",
"history": "^5.0.0",
"js-cookie": "^2.2.1",
"mathjs": "^11.8.2",
"node-fetch": "^2.6.1",
"react": "^17.0.2",
"react-beautiful-dnd": "^13.0.0",
"react-bootstrap-icons": "^1.10.3",
"react-cookie": "^4.0.3",
"react-date-picker": "^8.0.7",
"react-dates": "^21.8.0",
"react-dom": "^17.0.1",
"react-loader-spinner": "^4.0.0",
"react-responsive": "^8.2.0",
"react-router": "^5.2.0",
"react-router-dom": "^6.22.0",
"react-scripts": "^4.0.3",
"regenerator-runtime": "^0.13.7",
"styled-components": "^5.2.3",
"uuid": "^8.3.2",
"web-vitals": "^1.1.0"
},
"overrides": {
"react-error-overlay": "6.0.9"
},
"scripts": {
"start": "react-scripts start",
"serve": "nohup react-scripts start > nohup.out & cat nohup.out",
"stop": ". ./.env && fuser -k $REACT_APP_PORT/tcp",
"build": "react-scripts build",
"test": "jest",
"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": {
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"react-test-renderer": "^17.0.2"
},
"jest": {
"moduleNameMapper": {
"\\.(css|less)$": "<rootDir>/src/Info/CoursesInfo.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
]
}
}