-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 996 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
33
34
{
"name": "crud-app",
"version": "1.0.0",
"description": "CRUD App using ReactJS & NodeJS in contest for OCS Team Technical Manager Post",
"main": "server.js",
"scripts": {
"client-install": "npm install --prefix crudapp",
"build": "npm install",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix crudapp",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"render-postbuild": "NPM_CONFIG_PRODUCTION=true && npm install --prefix crudapp && npm run build --prefix crudapp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Girish Thatte",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"body-parser": "^1.20.1",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mysql2": "^3.1.2",
"node-cron": "^3.0.3"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"nodemon": "^2.0.20"
}
}