-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.45 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
{
"name": "@locol23/component-library-linaria",
"workspaces": [
"examples/**/*"
],
"version": "1.0.7",
"types": "./types/index.d.ts",
"files": [
"dist",
"types"
],
"main": "./dist/component-library.cjs.js",
"module": "./dist/component-library.es.js",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/component-library.es.js",
"require": "./dist/component-library.cjs.js"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"repository": {
"type": "git",
"url": "[email protected]:locol23/component-library-react-vite-linaria-boilerplate.git"
},
"scripts": {
"clean": "rimraf types dist",
"dev": "vite",
"build": "yarn clean && tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"sb": "start-storybook -p 6006 --no-open",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@linaria/babel-preset": "^3.0.0-beta.15",
"@linaria/core": "^3.0.0-beta.15",
"@linaria/react": "^3.0.0-beta.15",
"@linaria/rollup": "^3.0.0-beta.15",
"@linaria/shaker": "^3.0.0-beta.15",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-a11y": "^6.5.0",
"@storybook/addon-actions": "^6.5.0",
"@storybook/addon-docs": "^6.5.0",
"@storybook/addon-essentials": "^6.5.0",
"@storybook/addon-interactions": "^6.5.0",
"@storybook/addon-links": "^6.5.0",
"@storybook/builder-vite": "^0.1.34",
"@storybook/react": "^6.5.0",
"@storybook/testing-library": "^0.0.11",
"@storybook/testing-react": "^1.2.4",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "v12.1.5",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.5.1",
"@types/react": "17.0.2",
"@types/react-dom": "17.0.2",
"@vitejs/plugin-react": "^1.3.0",
"babel-loader": "^8.2.5",
"jsdom": "^19.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"ress": "^5.0.2",
"rimraf": "^3.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"storybook-addon-performance": "^0.16.1",
"storybook-dark-mode": "^1.1.0",
"typescript": "^4.6.3",
"vite": "^2.9.9",
"vitest": "^0.12.6"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "[email protected]"
}