-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.61 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "bcc_inventory",
"version": "1.0.0",
"description": "Outils interne QC pour la gestion et l'organisation des inventaires",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder.js",
"data:destroy": "node backend/seeder.js -d",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Krysto-nc-dev/bcc_inventory.git"
},
"keywords": [
"Inventaire",
"Quincaillerie",
"Caledonienne",
"Outils"
],
"author": "VELTEN Stoyann",
"license": "ISC",
"bugs": {
"url": "https://github.com/Krysto-nc-dev/bcc_inventory/issues"
},
"homepage": "https://github.com/Krysto-nc-dev/bcc_inventory#readme",
"devDependencies": {
"concurrently": "^9.1.0",
"dotenv": "^16.4.5",
"nodemon": "^3.1.7"
},
"dependencies": {
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"canvas": "^2.11.2",
"colors": "^1.4.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"express": "^4.21.1",
"install": "^0.13.0",
"jsbarcode": "^3.11.6",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.10.0",
"mongoose": "^8.8.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.16",
"npm": "^10.9.1",
"pdfkit": "^0.15.1",
"slugify": "^1.6.6",
"uuid": "^11.0.3"
}
}