-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "create-lumina",
"version": "1.3.4",
"description": "Lumina is an fullStack SPA maker",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "concurrently \"nodemon server.js\" \"npx @tailwindcss/cli -i ./assets/css/index.css -o ./assets/css/tailwindOutput.css --watch\" \"sass --watch assets/css/sass:assets/css/pageStyles\""
},
"bin": {
"create-lumina": "bin/index.js"
},
"homepage": "https://github.com/kiarashAlizadeh/create-lumina",
"repository": {
"type": "git",
"url": "git+https://github.com/kiarashAlizadeh/create-lumina.git"
},
"keywords": [
"frontend",
"backend",
"dev-server",
"fullstack",
"lumina"
],
"type": "module",
"author": "Kiarash Alizadeh",
"license": "MIT",
"files": [
"api",
"assets",
"components",
"app.js",
"index.html",
"server.js",
"LICENSE",
"lumina.config.js",
"README.md",
"routes.js"
],
"dependencies": {
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"fs": "^0.0.1-security",
"mongoose": "^8.9.5",
"path": "^0.12.7"
},
"devDependencies": {
"@tailwindcss/cli": "^4.0.0",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"sass": "^1.83.4",
"tailwindcss": "^4.0.0"
}
}