-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.15 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.15 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
{
"name": "sqlserverapi",
"version": "1.0.0",
"description": "Demonstrating CRUD operations using Node, Express, MySQL, and EJS.",
"main": "index.js",
"scripts": {
"build:css": "npx @tailwindcss/cli -i ./public/style.css -o ./public/tailwind.css --minify",
"watch:css": "npx @tailwindcss/cli -i ./public/style.css -o ./public/tailwind.css --watch",
"build": "npm run build:css",
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prancodes/SQL-ServerAPI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/prancodes/SQL-ServerAPI/issues"
},
"homepage": "https://github.com/prancodes/SQL-ServerAPI#readme",
"dependencies": {
"@faker-js/faker": "^9.6.0",
"@tailwindcss/cli": "^4.0.14",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"method-override": "^3.0.0",
"mysql2": "^3.13.0",
"tailwindcss": "^4.0.14",
"uuid": "^11.1.0"
},
"devDependencies": {
"nodemon": "^3.1.9"
}
}