-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 KB
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
{
"name": "heroku-cra-node",
"version": "3.0.0",
"description": "How to use create-react-app with a custom Node API on Heroku",
"engines": {
"node": "16.x"
},
"scripts": {
"start": "./node_modules/.bin/nodemon server",
"build": "cd react-ui/ && npm install && npm run build"
},
"cacheDirectories": [
"node_modules",
"react-ui/node_modules"
],
"dependencies": {
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@json-rpc-tools/utils": "^1.7.6",
"@mui/icons-material": "^5.6.2",
"@mui/material": "^5.5.0",
"@walletconnect/client": "^1.7.7",
"algorand-walletconnect-qrcode-modal": "^1.7.4",
"algosdk": "^1.15.0",
"bcryptjs": "^2.4.3",
"child_process": "^1.0.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"mime": "^3.0.0",
"mongoose": "^6.2.8",
"nft.storage": "^6.1.0",
"node-2fa": "^2.0.3",
"nodemon": "^2.0.15",
"react-multi-carousel": "^2.8.0",
"shelljs": "^0.8.5",
"tslib": "^2.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/mars/heroku-cra-node.git"
},
"keywords": [
"node",
"heroku",
"create-react-app",
"react"
],
"license": "MIT"
}