-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.36 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.36 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@fabric-ds/elements",
"type": "module",
"version": "1.2.0-next.3",
"description": "Custom elements for Fabric",
"exports": {
".": "./dist/index.js",
"./toast": "./dist/api.js"
},
"module": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"scripts": {
"build:api": "npx esbuild ./packages/toast/api.js --outdir=dist --target=es2017 --bundle --sourcemap --format=esm --minify",
"build:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2017 --bundle --sourcemap --format=esm --minify",
"watch:npm": "npx esbuild ./index.js --outdir=dist/ --target=es2017 --bundle --sourcemap --format=esm --minify --watch",
"build": "rimraf dist && npm run build:elements && tsc && npm run build:npm && npm run build:api",
"format": "prettier --write . --ignore-path .gitignore",
"lint": "npm run lint:format && npm run lint:eslint",
"lint:format": "prettier --check . --ignore-path .gitignore",
"lint:eslint": "eslint . --ext js,cjs,mjs --ignore-path .gitignore",
"dev": "vite",
"build:docs": "vite build && cp CNAME site",
"eik:login": "eik login",
"eik:publish": "eik publish",
"eik:alias": "eik pkg-alias",
"test:mock-backend": "node ./tests/utils/broadcast-backend.js",
"test:mock-backend:ci": "node ./tests/utils/broadcast-backend.js &",
"test": "tap ./packages/**/test.js --no-check-coverage",
"test:snapshot": "TAP_SNAPSHOT=1 tap ./packages/**/test.js --no-check-coverage",
"semantic-release": "semantic-release",
"build:elements": "node build-elements.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fabric-ds/elements.git"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "7.22.11",
"@babel/eslint-parser": "7.22.11",
"@chbphone55/classnames": "2.0.0",
"@eik/cli": "2.0.39",
"@fabric-ds/css": "1.2.0",
"@finn-no/browserslist-config": "3.0.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@stylelint/postcss-css-in-js": "0.38.0",
"@tailwindcss/aspect-ratio": "0.4.2",
"autoprefixer": "10.4.15",
"cors": "2.8.5",
"cssnano": "5.1.15",
"cz-conventional-changelog": "3.3.0",
"element-collapse": "1.1.0",
"esbuild": "0.25.0",
"eslint": "8.48.0",
"express": "4.20.0",
"fastify": "4.22.1",
"lerna": "6.6.2",
"lit-element": "3.3.3",
"lit-html": "2.8.0",
"npm-run-all": "4.1.5",
"playwright": "1.37.1",
"postcss": "8.4.31",
"postcss-cli": "10.1.0",
"postcss-discard-comments": "5.1.2",
"postcss-discard-empty": "5.1.1",
"postcss-import": "15.1.0",
"postcss-import-svg": "1.0.5",
"postcss-preset-env": "7.8.3",
"postcss-syntax": "0.36.2",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"semantic-release-slack-bot": "3.5.3",
"tailwindcss": "2.2.19",
"tap": "16.3.8",
"typescript": "4.9.5",
"vite": "4.5.6",
"vite-plugin-html": "3.2.0"
},
"dependencies": {
"@fabric-ds/core": "0.0.15",
"@fabric-ds/icons": "0.6.8",
"@open-wc/testing": "3.2.2",
"glob": "8.1.0",
"html-format": "1.1.7",
"lit": "2.8.0"
},
"publishConfig": {
"access": "public"
},
"eik": {
"server": "https://assets.finn.no",
"files": "dist"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}