-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 1.07 KB
/
package.json
File metadata and controls
27 lines (27 loc) · 1.07 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
{
"name": "@tacc/core-cms",
"version": "4.16.1",
"license": "MIT",
"author": "TACC ACI WMA <wma-portals@gmail.com>",
"description": "The TACC ACI-WMA Core CMS codebase used by TACC Portals.",
"engines": {
"node": ">=16",
"npm": ">=8"
},
"dependencies": {
"@frctl/fractal": "^1.5.14",
"@frctl/mandelbrot": "^1.10.1",
"@tacc/core-styles": "^2.33.1",
"minimist": "^1.2.6"
},
"repository": "git@github.com:TACC/Core-CMS.git",
"scripts": {
"build": "npm run build:css && npm run build:ui-demo",
"build:css": "bin/build-css.js --project=$npm_config_project --build-id=$npm_config_build_id",
"postbuild:css": "cp -r node_modules/@tacc/core-styles/src/lib/fonts/* taccsite_cms/static/site_cms/fonts",
"build:ui-demo": "cd taccsite_ui && fractal build",
"prebuild:ui-demo": "cp -r node_modules/@tacc/core-styles/src/lib/_imports/_preview.hbs taccsite_cms/static/site_cms/css/src/_imports/",
"postbuild:ui-demo": "rm taccsite_cms/static/site_cms/css/src/_imports/_preview.hbs"
},
"homepage": "https://github.com/TACC/Core-CMS"
}