forked from h3nrzi/proshop-mern-e-commerce-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
41
42
43
44
45
46
47
48
49
{
"name": "proshop",
"version": "1.0.0",
"description": "eCommerce app built with the MERN stack",
"main": "server.ts",
"scripts": {
"data:import": "ts-node backend/data/seeder.ts -i",
"data:destroy": "ts-node backend/data/seeder.ts -d",
"server": "nodemon backend/server.ts",
"client": "npm run dev --prefix frontend",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "npm i --prefix frontend && tsc -p backend && npm run build --prefix frontend",
"start": "node backend/dist/server.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.6",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"mongoose": "^7.0.1",
"morgan": "^1.9.0",
"multer": "^1.4.5-lts.1",
"react-hook-form": "^7.52.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/lodash": "^4.17.5",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.8",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"nodemon": "^3.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"nodemonConfig": {
"events": {
"start": "echo '--------------------\n'& clear || cls"
}
},
"author": "Hossein Rezaei",
"license": "ISC"
}