-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.78 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.78 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
43
44
45
{
"name": "eventhorizon",
"version": "1.0.0",
"description": "  ",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:css": "tailwindcss -i ./static/css/input.css -o ./static/css/output.css --minify",
"watch:css": "tailwindcss -i ./static/css/input.css -o ./static/css/output.css --watch",
"vercel-build": "bash ./build_files.sh",
"setup": "bash build.sh && python init_project.py",
"setup:auto": "bash build.sh && python init_project.py --no-interactive",
"setup:build-only": "bash build.sh",
"setup:config-only": "python init_project.py",
"setup:config-auto": "python init_project.py --no-interactive",
"db:migrate": "python manage.py migrate",
"db:makemigrations": "python manage.py makemigrations",
"superuser": "python create_superuser.py",
"start": "python manage.py runserver",
"dev": "python manage.py runserver",
"collectstatic": "python manage.py collectstatic --no-input"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NotoriousArnav/EventHorizon.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/NotoriousArnav/EventHorizon/issues"
},
"homepage": "https://github.com/NotoriousArnav/EventHorizon#readme",
"devDependencies": {
"@tailwindcss/typography": "^0.5.19",
"autoprefixer": "^10.4.23",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.19"
}
}