-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.27 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.27 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "keeper",
"version": "1.0.0",
"description": "A digital file submission app",
"author": {
"name": "Jason Ellis",
"email": "jason.ellis@unt.edu"
},
"packageManager": "npm@11.5.2",
"scripts": {
"build": "podman-compose build",
"buildProd": "podman-compose -f compose.prod.yml build",
"start": "podman-compose up",
"startProd": "podman-compose -f compose.prod.yml up",
"stop": "podman-compose down",
"stopProd": "podman-compose -f compose.prod.yml down",
"migrate": "podman-compose run -e DJANGO_SETTINGS_MODULE=tests.settings.dev --rm web python manage.py migrate --noinput",
"migrateProd": "podman-compose -f compose.prod.yml run -e DJANGO_SETTINGS_MODULE=tests.settings.production --rm web python manage.py migrate --noinput",
"createUser": "podman-compose run -e DJANGO_SETTINGS_MODULE=tests.settings.dev --rm web python manage.py createsuperuser",
"createUserProd": "podman-compose -f compose.prod.yml run -e DJANGO_SETTINGS_MODULE=tests.settings.production --rm web python manage.py createsuperuser",
"webRun": "podman-compose run -e DJANGO_SETTINGS_MODULE=tests.settings.dev --rm web",
"webRunProd": "podman-compose -f compose.prod.yml run -e DJANGO_SETTINGS_MODULE=tests.settings.production --rm web",
"webExec": "podman-compose exec web",
"collectstatic": "podman-compose exec -e DJANGO_SETTINGS_MODULE=tests.settings.production web python manage.py collectstatic --noinput --clear",
"prune": "podman system prune --all --volumes",
"buildCss": "npx gulp sass",
"buildScripts": "npx gulp scripts",
"watchAssets": "npx gulp",
"test": "tox"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"babelify": "10.0.0",
"bootstrap": "^5.3.3",
"browserify": "17.0.1",
"dropzone": "5.9.3",
"gulp": "^5.0.0",
"gulp-notify": "^5.0.0",
"gulp-rename": "^2.0.0",
"gulp-sass": "^6.0.0",
"gulp-sourcemaps": "^3.0.0",
"gulp-uglify": "^3.0.2",
"jquery": "3.5.1",
"parsleyjs": "^2.9.2",
"popper.js": "1.16.1",
"sass": "^1.83.4",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^4.0.0"
},
"overrides": {
"postcss": "^8.5.1"
},
"volta": {
"node": "22.18.0",
"npm": "11.5.2"
}
}