-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.4 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "mltshp-patterns",
"version": "2.6.0",
"type": "module",
"author": "Scott Vandehey",
"description": "Pattern Library for MLTSHP Apps",
"homepage": "https://github.com/MLTSHP/mltshp-patterns#readme",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/MLTSHP/mltshp-patterns.git"
},
"bugs": {
"url": "https://github.com/MLTSHP/mltshp-patterns/issues"
},
"main": "./dist/main.css",
"style": "./dist/main.css",
"files": [
"/dist",
"/src/**/*.scss",
"/src/assets",
"!.gitignore"
],
"scripts": {
"start": "npm run storybook",
"storybook": "npm run build:tokens && storybook dev -p 6006",
"build-storybook": "npm run build:tokens && storybook build",
"build": "run-s build:*",
"build:tokens": "node ./build-tokens.cjs",
"build:scss": "sass --no-source-map src:.temp",
"build:postcss": "postcss .temp/*.css -d dist",
"build:min": "postcss dist/*.css -u cssnano -d dist --ext .min.css --no-map",
"svgo": "svgo -r -f ./src/assets",
"test": "npm run lint:check",
"lint": "run-s lint:js lint:css lint:prettier",
"lint:check": "run-s lint:*:check",
"lint:js": "eslint --fix . --ext .js,.mdx",
"lint:js:check": "eslint . --ext .js,.mdx",
"lint:css": "stylelint --fix '**/*.scss'",
"lint:css:check": "stylelint '**/*.scss'",
"lint:prettier": "prettier . --write",
"lint:prettier:check": "prettier . --check",
"prepublishOnly": "npm ci && npm test && npm run build"
},
"devDependencies": {
"@storybook/addon-a11y": "7.6.20",
"@storybook/addon-essentials": "7.6.20",
"@storybook/blocks": "7.6.20",
"@storybook/html-vite": "7.6.20",
"@storybook/testing-library": "0.2.2",
"cssnano": "7.0.6",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-mdx": "3.1.5",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-storybook": "0.11.2",
"npm-run-all2": "7.0.2",
"postcss": "8.5.1",
"postcss-cli": "11.0.0",
"postcss-inline-svg": "6.0.0",
"prettier": "3.4.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"sass": "1.83.4",
"storybook": "7.6.20",
"storybook-addon-themes": "6.1.0",
"storybook-dark-mode": "3.0.3",
"style-dictionary": "3.9.2",
"stylelint": "16.13.2",
"stylelint-config-spaceninja": "15.0.0",
"svgo": "3.3.2",
"vite": "6.0.7",
"vite-plugin-svgr": "4.3.0"
}
}