-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.64 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "@lapidist/components",
"version": "0.0.0",
"description": "Lapidist components",
"author": {
"name": "Brett Dorrans",
"email": "hello@lapidist.net"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bylapidist/components.git"
},
"bugs": {
"url": "https://github.com/bylapidist/components/issues"
},
"homepage": "https://github.com/bylapidist/components#readme",
"keywords": [
"react",
"components",
"component library",
"design system",
"lapidist"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/lapidist.umd.js",
"module": "./dist/lapidist.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/lapidist.es.js",
"require": "./dist/lapidist.umd.js",
"types": "./dist/index.d.ts"
},
"./style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"storybook": "storybook dev --port 6006",
"build": "tsc && vite build",
"build:storybook": "storybook build",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint . --ext js,cjs,ts,tsx,mdx",
"lint:css": "stylelint './src/**/*.scss'",
"fix": "npm run lint:js -- --fix && npm run lint:css -- --fix",
"watch": "tsc -w",
"watch:tests": "vitest",
"test": "npm run lint && npm run test:typecheck && npm run test:unit",
"test:typecheck": "tsc --noEmit -p tsconfig.json",
"test:unit": "vitest run --coverage",
"update:snapshots": "vitest run --update",
"prepare": "test -d node_modules/husky && husky install",
"commit": "cz"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-solid-svg-icons": "^6.5.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@lapidist/styles": "^6.2.0",
"classnames": "^2.5.1",
"react": "18.x",
"react-dom": "18.x"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/cz-commitlint": "19.5.0",
"@lapidist/linting": "^3.17.2",
"@storybook/addon-a11y": "^8.0.0",
"@storybook/addon-backgrounds": "^8.0.0",
"@storybook/addon-controls": "^8.0.0",
"@storybook/addon-docs": "^8.0.0",
"@storybook/addon-highlight": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/addon-measure": "^8.0.0",
"@storybook/addon-outline": "^8.0.0",
"@storybook/addon-toolbars": "^8.0.0",
"@storybook/addon-viewport": "^8.0.0",
"@storybook/blocks": "^8.0.0",
"@storybook/cli": "^8.0.0",
"@storybook/core-common": "^8.0.0",
"@storybook/node-logger": "^8.0.0",
"@storybook/react-vite": "^8.0.0",
"@storybook/theming": "^8.0.0",
"@testing-library/react": "^15.0.0",
"@types/react": "^18.2.65",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^2.0.0",
"axe-playwright": "^2.0.1",
"babel-loader": "^9.1.3",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "^9.0.11",
"jsdom": "^25.0.0",
"lint-staged": "^15.2.2",
"sass": "^1.71.1",
"storybook": "^8.0.0",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-plugin-dts": "^4.0.0",
"vitest": "^2.0.0"
},
"peerDependencies": {
"react": "18.x",
"react-dom": "18.x"
},
"engines": {
"node": "^20.0.0"
},
"husky": {
"hooks": {
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}