-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "tracker4j",
"version": "1.0.0",
"scripts": {
"start": "webpack serve --mode development --hot",
"build": "webpack --mode production",
"test": "jest --coverage",
"generate-docs": "react-docgen src/Components --pretty -e index.jsx -o docs/frontend-docs.json"
},
"repository": "https://github.com/nakraft/tracker4J.git",
"author": "Ekansh Singhal <[email protected]>",
"license": "MIT",
"dependencies": {
"@ant-design/icons": "^4.7.0",
"antd": "^4.23.3",
"axios": "^0.27.2",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-plotlyjs": "^0.4.4",
"react-router-dom": "^6.4.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"babel-jest": "^29.1.2",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"mini-css-extract-plugin": "^2.6.1",
"react-docgen": "^5.4.3",
"sass": "^1.55.0",
"sass-loader": "^13.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"^.+\\.(css|less|scss)$": "babel-jest"
},
"coveragePathIgnorePatterns" : [
"src/Components/AddApplication/NextStageApplication.jsx",
"src/Components/AddApplication/ChangeOutcome.jsx",
"src/Components/AddApplication/ChooseAction.jsx",
"src/Components/AddApplication/Contact.jsx",
"src/Components/Statistics/Statistics.jsx",
"src/Components/SavedJobs/AddCareerFair.jsx",
"src/Components/AddApplication/AddApplication.jsx",
"src/Components/LandingPage/LandingPage.jsx"
]
}
}