-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.72 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
{
"name": "formidable-oss-badges",
"version": "1.6.0",
"description": "Badges for Formidable OSS",
"license": "MIT",
"types": "dist/src/index.d.ts",
"main": "dist/formidable-oss-badges.cjs.js",
"jsnext:main": "dist/formidable-oss-badges.es.js",
"module": "dist/formidable-oss-badges.es.js",
"sideEffects": false,
"peerDependencies": {
"react": ">= 18.0.0",
"react-dom": ">= 18.0.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.14.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.21.0",
"@changesets/cli": "^2.26.1",
"@storybook/addon-controls": "^6.4.13",
"@storybook/builder-webpack5": "^6.5.16",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^6.4.13",
"@svgr/webpack": "^7.0.0",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@types/prop-types": "^15.7.5",
"@types/react": "^18.0.31",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"@vitejs/plugin-react": "^3.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"clsx": "^1.2.1",
"eslint": "8.33.0",
"eslint-config-next": "^13.2.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"file-loader": "^6.2.0",
"prettier": "^2.8.3",
"react": "18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^4.9",
"typescript-plugin-css-modules": "^5.0.0",
"vite": "^4.2.1",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-svgr": "^2.4.0",
"vite-tsconfig-paths": "^4.0.7"
},
"scripts": {
"prebuild:lib": "rm -rf lib/*",
"build": "vite build",
"prepublishOnly": "yarn run build",
"storybook": "start-storybook -p 9001",
"storybook:build": "build-storybook -o .out",
"changeset": "changeset",
"typecheck": "tsc --noEmit",
"lint": "eslint --config .eslintrc \"./src/**/*.{ts,tsx}\"",
"version": "yarn changeset version"
},
"files": [
"src",
"lib",
"dist"
],
"author": "Formidable",
"bugs": {
"url": "https://github.com/FormidableLabs/formidable-oss-badges/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/formidable-oss-badges"
},
"engines": {
"npm": ">= 2.0.0",
"node": ">= 0.12.0"
},
"keywords": [
"react",
"Project Badges",
"Formidable"
]
}