-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.63 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.63 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
50
51
52
{
"name": "theknittygritty",
"version": "2.0.0",
"description": "Full-stack eCommerce application that utilizes React, Vite, Redux, Express, Node, and MongoDB.",
"type": "module",
"main": "server.js",
"dependencies": {
"acorn": "^8.14.1",
"acorn-walk": "^8.3.4",
"arg": "^4.1.3",
"bcryptjs": "^3.0.2",
"cloudinary": "^1.41.3",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"create-require": "^1.1.1",
"diff": "^4.0.2",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.2",
"make-error": "^1.3.6",
"mongoose": "^8.13.2",
"multer": "^1.4.5-lts.2",
"multer-storage-cloudinary": "^4.0.0",
"react-toastify": "^11.0.5",
"undici-types": "^6.21.0",
"v8-compile-cache-lib": "^3.0.1",
"yn": "^3.1.1"
},
"scripts": {
"build": "npm install && npm install --prefix frontend && tsc --project backend/tsconfig.json && npm run build --prefix frontend",
"start": "node backend/dist/backend/server.js",
"server": "nodemon",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node --loader ts-node/esm backend/seeder.ts",
"data:destroy": "node --loader ts-node/esm backend/seeder.ts -d"
},
"author": "Romie Hecdivert",
"license": "MIT",
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.9",
"@types/multer": "^1.4.12",
"@types/node": "^22.14.1",
"concurrently": "^9.1.2",
"dotenv": "^16.5.0",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}