-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.25 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.25 KB
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": "front-end",
"version": "0.1.0",
"private": true,
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"testEnvironment": "jsdom",
"setupFiles": [
"./jest.setup.js"
]
},
"scripts": {
"start": "nodemon server/index.js",
"build": "webpack --mode development -w",
"build-prod": "webpack --mode production",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/FEC-Team-4/FEC.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/FEC-Team-4/FEC/blob/main/README.md",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/stylis": "^0.8.5",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"bootstrap": "^5.1.1",
"compression": "^1.7.4",
"critical-css-webpack-plugin": "^3.0.0",
"debug": "^4.3.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"mongoose": "^5.13.3",
"postcss-loader": "^6.1.1",
"react": "^17.0.2",
"react-bootstrap": "^1.6.3",
"react-cool-img": "^1.2.12",
"react-dom": "^17.0.2",
"react-elastic-carousel": "^0.11.5",
"react-simple-star-rating": "^3.0.0",
"react-slick": "^0.28.1",
"react-social-sharing": "^3.3.0",
"react-star-rating": "^1.4.2",
"react-star-ratings": "^2.3.0",
"rn-range-slider": "^2.1.1",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.1"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.1.0",
"babel-jest": "^27.2.0",
"babel-loader": "^8.2.2",
"chai": "*",
"css-loader": "^6.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.2.0",
"jest-dom": "^4.0.0",
"mocha": "*",
"nodemon": "^2.0.12",
"react-test-renderer": "^17.0.2",
"style-loader": "^3.2.1",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}