-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.39 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.39 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
{
"name": "restful_api",
"version": "1.0.0",
"type": "module",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"dev:db": "NODE_ENV=development node scripts/setup-dev-db.js",
"prod": "NODE_ENV=production node server.js",
"docs": "jsdoc -c jsdoc.config.json",
"docs:serve": "npx http-server docs -p 8080 -o",
"docs:clean": "rm -rf docs/ && npm run docs",
"generate-docs": "jsdoc --configure jsdoc.config.json --verbose",
"staging:prepare": "git checkout -B feature/staging-prepare && node scripts/staging-cleanup.js && git add . && git commit -m 'chore: Prepare code for production staging' && git push -f origin feature/staging-prepare && git checkout staging && git reset --hard feature/staging-prepare && git push -f origin staging && echo '🎉 Everything synced!'",
"release": "node scripts/release.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"mysql2": "^3.14.1",
"nodemailer": "^7.0.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"clean-jsdoc-theme": "^4.3.0",
"concurrently": "^9.2.1",
"jsdoc": "^4.0.5",
"nodemon": "^3.1.10"
}
}