-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.17 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
{
"name": "@tacc/core-cms",
"version": "4.21.0",
"license": "MIT",
"author": "TACC ACI WMA <[email protected]>",
"contributors": [
"TACC COA CMD <[email protected]>"
],
"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",
"minimist": "^1.2.6"
},
"repository": "[email protected]: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",
"devDependencies": {
"@tacc/core-styles": "^2.37.2"
}
}