-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.97 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": "developer-portal-sample-app",
"version": "1.0.0",
"description": "DoorDash SDK Example Application",
"main": "client/index.ts",
"scripts": {
"start": "run-p dev:*",
"dev:client": "webpack serve",
"dev:server": "nodemon src/server/express.ts",
"build": "run-p build:*",
"build:client": "webpack --config=webpack.prod.ts",
"build:server": "webpack --config=webpack.express.ts",
"lint": "eslint --cache --quiet --ignore-path=.eslintignore src/ && prettier --check src/",
"lint:show-warnings": "eslint --cache --ignore-path=.eslintignore src/ && prettier --check src/",
"format": "eslint --cache --quiet --fix --ignore-path=.eslintignore src/ && prettier --write src/"
},
"author": "DoorDash (https://developer.doordash.com)",
"license": "MIT",
"keywords": [
"React",
"Express",
"DoorDash"
],
"dependencies": {
"@doordash/sdk": "^0.4.7",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.95",
"@mui/material": "^5.10.1",
"@mui/styled-engine-sc": "^5.10.1",
"@mui/x-data-grid": "^5.15.2",
"axios": "^0.26.0",
"body-parser": "^1.19.1",
"dotenv": "^16.0.1",
"express": "^4.17.2",
"express-async-handler": "^1.2.0",
"ioredis": "^5.2.2",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-number-format": "^4.9.1",
"react-router-dom": "^5.3.0",
"styled-components": "^5.3.3",
"zod": "^3.11.6",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@hot-loader/react-dom": "^17.0.2",
"@mui/types": "^7.1.1",
"@types/autosuggest-highlight": "^3.2.0",
"@types/connect-redis": "0.0.18",
"@types/dotenv-webpack": "^7.0.3",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.8",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.22",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-unused-imports": "^1.1.1",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2"
}
}