-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (30 loc) · 1.08 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
33
34
{
"// SUMMARY": "We use Lombiq's Node.js Extensions project to process all frontend assets.",
"private": true,
"dependencies": {
"bootstrap": "5.3.2"
},
"scripts": {
"build": "npm explore nodejs-extensions -- pnpm build",
"clean": "npm explore nodejs-extensions -- pnpm clean",
"watch": "npm explore nodejs-extensions -- pnpm watch"
},
"// nodejsExtensions": "Contains the custom configuration for asset processing with Node.js Extensions.",
"// assetsToCopy": "Contains an array of configuration objects to copy specific assets to wwwroot.",
"// scripts": "Absent, since this project uses the default configuration from Node.js Extensions.",
"// styles": "Absent, since this project uses the default configuration from Node.js Extensions.",
"nodejsExtensions": {
"assetsToCopy": [
{
"sources": [ "Assets" ],
"pattern": "Theme.png",
"target": "wwwroot"
},
{
"sources": [ "Assets/Icons" ],
"target": "wwwroot/icons"
}
]
},
"// NEXT STATION": "ResourceManagementOptionsConfiguration.cs"
}