-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.59 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
{
"name": "@fleekhq/fleekon",
"version": "0.0.4",
"description": "Fleek icon toolkit",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"build:publish": "tsc && npm publish",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "[email protected]:FleekHQ/fleekon.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"author": {
"name": "Helder",
"email": "[email protected]"
},
"peerDependencies": {
"react": "17.x",
"react-dom": "17.x"
},
"dependencies": {
"@stitches/react": "^0.2.2",
"@storybook/addon-actions": "^6.3.4",
"@storybook/addon-essentials": "^6.3.4",
"@storybook/addon-links": "^6.3.4",
"@storybook/react": "^6.3.4",
"@types/react": "^17.0.13"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-loader": "^8.2.2",
"eslint": "^7.30.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"typescript": "^4.3.5",
"react": "17.x",
"react-dom": "17.x"
}
}