-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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": "garager",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --watch --coverage ./tests",
"test:messages": "jest --coverage tests/messages.test.js",
"test:account": "jest --coverage tests/account.test.js",
"test:authentication": "jest tests/authTest/ --detectOpenHandles --collectCoverage",
"test:auth":"jest --coverage tests/authorization.test.js",
"test:postItem": "jest --coverage tests/post-item.test.js",
"test:stripe": "jest --coverage tests/checkout.test.js",
"test:itemView": "jest --coverage tests/item-view.test.js",
"ci:test": "jest --ci ./tests",
"build-dev": "webpack --mode development --watch",
"build-docker": "webpack --mode development",
"start": "nodemon server/app.js",
"lint": " npx eslint . --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp33-boc-atlantic/garager.git"
},
"author": "Team Atlantic",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp33-boc-atlantic/garager/issues"
},
"homepage": "https://github.com/rpp33-boc-atlantic/garager#readme",
"dependencies": {
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^5.8.0",
"@mui/material": "^5.8.1",
"@mui/styled-engine": "^5.8.0",
"aws-sdk": "^2.1144.0",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"bootstrap": "^5.1.3",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"firebase": "^9.8.1",
"import-lazy": "^4.0.0",
"moment": "^2.29.3",
"nodemon": "^2.0.16",
"pg": "^8.7.3",
"react": "^18.1.0",
"react-bootstrap": "^2.4.0",
"react-calendar": "^3.7.0",
"react-datepicker": "^4.8.0",
"react-dom": "^18.1.0",
"react-icons": "^4.3.1",
"react-images-uploading": "^3.1.6",
"react-places-autocomplete": "^7.3.0",
"react-router-bootstrap": "^0.26.1",
"react-router-dom": "^6.3.0",
"react-test-renderer": "^18.1.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"stripe": "^9.4.0",
"styled-components": "^5.3.5",
"supertest": "^6.2.3",
"underscore": "^1.13.3",
"util.promisify": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"babel-loader": "^8.2.5",
"css-loader": "^6.7.1",
"eslint": "^8.16.0",
"file-loader": "^6.2.0",
"global-jsdom": "^8.4.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jsdom": "^19.0.0",
"msw": "^0.42.1",
"style-loader": "^3.3.1",
"supertest": "^6.2.3",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.0"
}
}