-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 2.27 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"main": "./dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development --watch",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve",
"start": "nodemon ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/travis503/hr-atx58-fec-havarti.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/travis503/hr-atx58-fec-havarti/issues"
},
"homepage": "https://github.com/travis503/hr-atx58-fec-havarti#readme",
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/roboto": "^4.5.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/system": "^4.12.1",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0-rc.1",
"@mui/styles": "^5.0.1",
"axios": "^0.21.4",
"compression": "^1.7.4",
"email-existence": "^0.1.6",
"express": "^4.17.1",
"jest": "^27.1.1",
"material-ui-icons": "^1.0.0-beta.36",
"nodemon": "^2.0.12",
"package-lock.json": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-elastic-carousel": "^0.11.5",
"react-image-gallery": "^1.2.7",
"react-multi-carousel": "^2.6.5",
"react-star-ratings": "^2.3.0",
"recoil": "^0.4.1",
"regenerator-runtime": "^0.13.9",
"styled-components": "^5.3.1",
"underscore": "^1.13.1"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/preset-env": "^7.15.4",
"@babel/preset-react": "^7.14.5",
"@webpack-cli/generators": "^2.3.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.26.0",
"html-webpack-plugin": "^5.3.2",
"install": "^0.13.0",
"npm": "^7.23.0",
"source-map-loader": "^1.0.0",
"style-loader": "^3.2.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^3.11.2"
}
}