-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "admin-airhopper",
"version": "1.0.0",
"description": "This repository is for the admin panel",
"main": "./src/server.js",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production node ./src/server.js",
"watch": "cross-env NODE_ENV=development nodemon ./src/server.js",
"css": "npx tailwindcss -i ./src/resources/css/app.css -o ./public/css/app.css --watch",
"dev": "concurrently -k \"npm run watch\" \"npm run css\"",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"alpinejs": "^3.14.7",
"axios": "^1.7.9",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"edge.js": "^6.2.0",
"express": "^4.21.1",
"express-list-endpoints": "^7.1.1",
"flowbite": "^2.5.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"concurrently": "^9.1.0",
"dotenv-cli": "^7.4.2",
"eslint": "^9.14.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"tailwindcss": "^3.4.16"
}
}