-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.41 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
{
"name": "restaurant-finder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack --mode production; tsc backend/*.ts backend/*/*.ts --outDir dist",
"client-build": "webpack --mode production",
"backend-build": "tsc backend/*.ts backend/*/*.ts --outDir dist",
"start": "cd dist && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Melvin-Viana/restaurantFinder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Melvin-Viana/restaurantFinder/issues"
},
"homepage": "https://github.com/Melvin-Viana/restaurantFinder#readme",
"dependencies": {
"@agney/react-loading": "^0.1.2",
"@material-ui/core": "^4.11.2",
"@types/node": "^14.14.41",
"@types/react-transition-group": "^4.4.0",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"find-config": "^1.0.0",
"js-cookie": "^2.2.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "^5.12.2",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-loading-overlay": "^1.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-spinners": "^0.10.4",
"react-transition-group": "^4.4.1",
"regenerator-runtime": "^0.13.5",
"ts-jest": "^26.1.1",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.10.2",
"@babel/preset-react": "^7.10.1",
"@babel/preset-typescript": "^7.10.4",
"@types/googlemaps": "^3.39.8",
"@types/jest": "^26.0.23",
"@types/react": "^16.9.43",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"dotenv-webpack": "^7.0.2",
"eslint": "^7.3.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"source-map-loader": "^1.0.1",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
}
}