-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "fast-storybook",
"author": "Microsoft",
"version": "1.0.0",
"description": "Storybook Support for FAST Components",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsofthackathons/fast-storybook.git"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@types/cross-spawn": "^6.0.2",
"@types/webpack-env": "^1.18.5",
"@types/node": "^20.0.0",
"concurrently": "^9.0.1",
"nodemon": "^3.1.6",
"typescript": "^5.6.2",
"del-cli": "^5.1.0",
"lage": "^2.9.0"
},
"workspaces": [
"packages/frameworks/*",
"packages/renderers/*",
"packages/cem-fast-extended-plugin",
"test"
],
"scripts": {
"build": "lage build",
"dev": "concurrently \"npm:watch\" \"npm:storybook\"",
"watch": "nodemon",
"clean": "npx lage clean && npx lage cache --clear",
"storybook": "npm run watch --workspace=test"
},
"nodemonConfig": {
"ignore": [
"**/dist",
"test/storybook-static",
".git",
"node_modules/**/node_modules"
],
"watch": [
"packages/frameworks/fast-components-vite/src",
"packages/frameworks/fast-components-webpack5/src",
"packages/renderers/fast-components/src",
"packages/cem-plugin-fast-extended/src"
],
"ext": "ts,mts",
"exec": "npm run build"
}
}