-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 880 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
35
36
37
38
39
40
{
"name": "reactcrud",
"version": "1.0.0",
"description": "Architecture of REact + Node project that is going to be used for CRUD operations",
"main": "server.js",
"scripts": {
"test": "npm run test",
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"keywords": [
"React",
"JS",
"Node",
"JS",
"JS",
"CRUD",
"crud",
"reactjs",
"nodejs",
"ReactJS",
"NodeJS"
],
"author": "Dhruv Goel",
"contributors": [
"Yash Karanke (dex.papa@gmail.com) <dextel2.surge.sh>"
],
"license": "ISC",
"dependencies": {
"concurrently": "^5.3.0",
"express": "^4.17.1",
"nodemon": "^2.0.6"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-plugin-react": "^7.21.5"
}
}