-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "quickstart-node-disbursement",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"buffer": "^6.0.3",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.1.0",
"express": "^4.18.2",
"morgan": "^1.10.0",
"node-fetch": "^2.6.11",
"node-rsa": "^1.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router": "^6.4.1",
"react-router-dom": "^6.8.2",
"uuidv4": "^6.2.13"
},
"scripts": {
"frontend": "dotenv -e .env react-scripts start",
"build": "dotenv -e .env react-scripts build",
"test": "dotenv -e .env react-scripts test",
"eject": "react-scripts eject",
"backend": "nodemon api/server.js"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.4.0",
"nodemon": "^2.0.21",
"react-scripts": "^4.0.3"
}
}