-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
{
"name": "iati-design-system",
"description": "A design system for IATI products.",
"version": "0.0.0-semantically-released",
"repository": {
"type": "git",
"url": "git+https://github.com/IATI/design-system.git"
},
"type": "module",
"exports": {
".": {
"sass": "./src/scss/main.scss"
}
},
"files": [
"src/scss/**/*.scss",
"src/assets/**/*",
"dist/css/**/*.css",
"dist/js/**/*.js"
],
"scripts": {
"start": "storybook dev -p 6006",
"clean": "rm -rf dist",
"build": "vite build",
"build:storybook": "storybook build",
"serve:storybook": "npx http-server -o ./storybook-static",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint",
"lint:prettier": "prettier . --check",
"format": "prettier . --write"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.0.0",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/blocks": "^8.0.10",
"@storybook/web-components": "^8.0.10",
"@storybook/web-components-vite": "^8.0.10",
"eslint": "^8.57.0",
"eslint-config-flat-gitignore": "^0.1.5",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.0.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"sass": "^1.75.0",
"semantic-release": "^23.1.1",
"storybook": "^8.0.10",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"vite": "^5.4.4"
},
"dependencies": {
"normalize-scss": "^8.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}