-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 893 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 893 Bytes
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": "mern-restful-api-template",
"version": "1.0.0",
"description": "Basic MERN RESTful API structure",
"main": "index.js",
"scripts": {
"start": "node backend/index.js",
"server": "nodemon backend/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tiiso/MERN-RESTful-API-Template.git"
},
"author": "Tiiso",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tiiso/MERN-RESTful-API-Template/issues"
},
"homepage": "https://github.com/Tiiso/MERN-RESTful-API-Template#readme",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"mongoose": "^6.3.6",
"node-excel-to-json": "0.0.3",
"xls-to-json": "^0.4.0",
"xls-to-json-lc": "^0.3.4",
"xlsx-to-json": "^0.3.0",
"xlsx-to-json-lc": "^0.5.0"
},
"devDependencies": {
"nodemon": "^2.0.16"
}
}