-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.88 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
{
"name": "upgraded-umbrella",
"version": "1.0.0",
"description": "A modern product detail page built with React.",
"main": "index.js",
"scripts": {
"test": "jest",
"coverage": "jest --collect-coverage",
"client": "webpack --mode development --watch",
"server": "npx nodemon ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp32-fec-parasol/upgraded-umbrella.git"
},
"author": "Team Parasol",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp32-fec-parasol/upgraded-umbrella/issues"
},
"homepage": "https://github.com/rpp32-fec-parasol/upgraded-umbrella#readme",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.10",
"axios": "^0.24.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"express": "^4.17.2",
"node-sass": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-img-zoom": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.7",
"@babel/preset-react": "^7.16.7",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"babel-jest": "^27.4.6",
"babel-loader": "^8.2.3",
"chai": "^4.3.4",
"css-loader": "^6.5.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.4.7",
"jsdom": "19.0.0",
"jsdom-global": "3.0.2",
"mocha": "^9.1.3",
"react-test-renderer": "^17.0.2",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0"
},
"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)$": "<rootDir>/__mocks__/styleMock.js"
},
"testEnvironment": "jsdom"
}
}