-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 962 Bytes
/
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
{
"name": "Currency App",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "concurrently \"npm run start:frontend\" \"npm run start:backend\"",
"install:children": "concurrently \"npm run install:frontend\" \"npm run install:backend\"",
"build:children": "concurrently \"npm run build:frontend\" \"npm run build:backend\"",
"start:frontend": "cd frontend && npm run dev",
"start:backend": "cd backend && npm start",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"install:frontend": "cd frontend && npm install",
"install:backend": "cd backend && npm install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^8.2.2"
},
"dependencies": {
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"react-number-format": "^5.3.4",
"react-toastify": "^10.0.5"
}
}