-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 990 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
31
32
{
"name": "argent-bank-website",
"version": "1.1.0",
"description": "Website of Argent Bank company",
"keywords": [
"OpenClassrooms",
"oc",
"Project 13",
"p13",
"react",
"redux",
"swagger"
],
"author": "miervaldis42",
"license": "ISC",
"main": "./client/src/index.js",
"scripts": {
"install-client": "cd ./client && npm i",
"install-server": "cd ./server && npm i",
"install-all": "npm i && npm run install-server && npm run install-client",
"database-setup": "cd ./server && npm run db:populate",
"server-dev": "cd ./server && npm run dev:server",
"server": "cd ./server && npm run server",
"client": "cd ./client && npm start",
"start-dev": "npm run install-all && concurrently \"npm run server-dev\" \"npm run client\"",
"start": "npm run install-all && concurrently \"npm run server\" \"npm run client\""
},
"proxy": "http://localhost:3001",
"devDependencies": {
"concurrently": "^8.2.2"
}
}