-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "@equinor/fusion-web-components",
"version": "1.0.0",
"description": "",
"private": true,
"engines": {
"node": "^18 || ^20",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=9"
},
"pnpm": {
"overrides": {
"lit": "^3.0.2"
}
},
"packageManager": "pnpm@9.1.0",
"scripts": {
"start": "cd storybook && pnpm run dev",
"clean": "pnpm clean:build && pnpm clean:node",
"clean:build": "pnpm -r exec del-cli dist lib tsconfig.tsbuildinfo",
"clean:node": "pnpm -r exec del-cli node_modules && pnpm exec del-cli node_modules",
"prepack": "pnpm --filter='@equinor/fusion-wc-builder' build",
"build": "pnpm -r --filter=!'@equinor/fusion-wc-storybook' build",
"build:docs": "pnpm --filter='@equinor/fusion-wc-storybook' build",
"build:clean": "pnpm clean:clean && pnpm build",
"lint": "eslint ./packages/*/src/**",
"lint:report": "eslint --output-file eslint-report.log.json --format json packages/*/src",
"test:pack": "pnpm -r pack --dry-run",
"test:publish": "pnpm publish -r --dry-run --no-git-checks --force",
"changeset:publish": "pnpm changeset tag && pnpm publish -r"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@types/react": "^18.3.11",
"prettier": "^3.3.3"
},
"devDependencies": {
"@equinor/eslint-config-fusion": "^2.0.0",
"del-cli": "^5.0.0",
"eslint": "^8.57.1",
"eslint-plugin-prettier": "^5.2.1",
"typescript": "^5.6.2"
}
}