-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "fec",
"version": "1.0.0",
"description": "Project Atelier (Front-End Capstone)",
"main": "index.js",
"scripts": {
"start": "nodemon server/index.js",
"webpack": "webpack --mode production --watch",
"test": "jest --coverage",
"lint": "eslint ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AdilovM/FEC.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AdilovM/FEC/issues"
},
"homepage": "https://github.com/AdilovM/FEC#readme",
"dependencies": {
"@testing-library/dom": "^8.16.0",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.2.1",
"aws-sdk": "^2.1181.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"chai": "^4.3.6",
"cloudinary-core": "^2.13.0",
"css-loader": "^6.7.1",
"dotenv": "^16.0.1",
"env": "^0.0.2",
"enzyme": "^3.11.0",
"express": "^4.18.1",
"express-static-gzip": "^2.1.7",
"file-loader": "^6.2.0",
"jest": "^28.1.2",
"jest-environment-jsdom": "^28.1.2",
"jquery": "^3.6.0",
"jquery-ui": "^1.13.2",
"mocha": "^10.0.0",
"multiparty": "^4.2.3",
"mysql": "^2.18.1",
"node-fetch": "^3.2.6",
"nodemon": "^2.0.18",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-native-star-rating-bar-graph": "^1.0.0",
"react-router-dom": "^6.3.0",
"react-stars-display": "^0.1.24",
"styled-components": "^5.3.5",
"underscore": "^1.13.4",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@testing-library/jest-dom": "^5.16.4",
"babel-loader": "^8.2.5",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^10.0.0",
"eslint-config-hackreactor": "github:reactorcore/eslint-config-hackreactor",
"jest-fetch-mock": "^3.0.3",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"jest": {
"testEnvironment": "jsdom",
"moduleNameMapper": {
"\\.(jpg|ico|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/mocks/fileMock.js",
"\\.(css|less)$": "<rootDir>/mocks/fileMock.js"
}
}
}