-
Notifications
You must be signed in to change notification settings - Fork 291
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 853 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 853 Bytes
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": "nf-co.re",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"build-cache": "npm run build-pipeline-json && npm run build-component-json",
"build-pipeline-json": "node bin/pipelines.json.js",
"build-component-json": "node bin/components.json.js",
"update": "npx npm-check-updates --interactive --format group --workspaces",
"test-all": "for dir in sites/*; do (cd $dir && npm run test); done"
},
"workspaces": [
"sites/*"
],
"dependencies": {
"@astrojs/compiler-rs": "^0.1.8",
"remark": "^15.0.1",
"unist-util-visit": "^5.1.0"
},
"devDependencies": {
"@j178/prek": "^0.3.9",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.5.1"
}
}