-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
53
54
55
56
57
58
59
{
"name": "sw_project",
"version": "1.0.0",
"description": "Software Graduation Project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js",
"databaseMAC": "docker run -p 3306:3306 -v ./DockerVolume/SqlData:/var/lib/mysql -d swp",
"database": "docker run -p 3306:3306 -v C:/DockerVolume/SqlData:/var/lib/mysql -d swp",
"watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js",
"build:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YazanM23/SW_GP.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/YazanM23/SW_GP/issues"
},
"homepage": "https://github.com/YazanM23/SW_GP#readme",
"dependencies": {
"axios": "^1.6.8",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.2.0",
"firebase-admin": "^13.0.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.16",
"pug": "^3.0.2",
"punycode": "^2.3.1",
"sequelize": "^6.37.3",
"validator": "^13.12.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"nodemon": "^3.1.0",
"parcel-bundler": "^1.12.5",
"prettier": "^3.2.5"
}
}