-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.63 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
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "scratch-project",
"version": "1.0.0",
"description": "",
"main": "client/index.js",
"scripts": {
"start": "cross-env NODE_ENV=production node server/server.js",
"build": "cross-env NODE_ENV=production webpack",
"dev": "concurrently \"NODE_ENV=development nodemon server/server.js\" \"NODE_ENV=development webpack-dev-server --hot --open\"",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nylocaltech/caraggregatorplusplus"
},
"nodemonConfig": {
"ignore": [
"build",
"client"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": ""
},
"homepage": "",
"dependencies": {
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/runtime": "^7.1.2",
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.1.18",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.8.3",
"@mui/material": "^5.8.3",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"axios": "^0.27.2",
"cheerio": "^1.0.0-rc.11",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.16.3",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jquery": "^3.6.0",
"node-cron": "^3.0.1",
"node-fetch": "^3.2.0",
"pg": "^8.7.3",
"puppeteer": "^14.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.2.2",
"react-router-dom": "^6.2.2",
"regenerator-runtime": "^0.13.9",
"scroll-to-bottomjs": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"babel-jest": "^23.6.0",
"babel-loader": "^8.2.5",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.6.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-puppeteer": "^6.1.0",
"nodemon": "^2.0.15",
"puppeteer": "^14.2.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-hot-middleware": "^2.25.1"
}
}