-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 789 Bytes
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
{
"name": "accounting-academy",
"version": "1.0.0",
"description": "Interactive educational platform for learning accounting fundamentals",
"main": "server.js",
"scripts": {
"start": "node server.js",
"tailwind": "tailwindcss -i ./public/css/tailwind-input.css -o ./public/css/tailwind.css --watch",
"build:css": "tailwindcss -i ./public/css/tailwind-input.css -o ./public/css/tailwind.css"
},
"keywords": [
"accounting",
"education",
"learning-platform",
"financial-education",
"interactive-learning"
],
"author": "",
"license": "ISC",
"dependencies": {
"@tailwindcss/cli": "^4.1.14",
"express": "^5.1.0"
},
"devDependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"tailwindcss": "^3.4.18"
}
}