-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.05 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": "@fdaciuk/react-ff",
"version": "0.0.12",
"description": "Components to create Feature Flags with React.js",
"main": "./dist/ff.umd.js",
"module": "./dist/ff.es.js",
"types": "./dist/ff.d.ts",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "yarn lint --fix",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"ci": "yarn lint && yarn type-check",
"prepare": "husky install"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/ff.es.js",
"require": "./dist/ff.umd.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdaciuk/react-ff.git"
},
"keywords": [
"feature flag",
"feature toggle",
"react feature flag",
"react feature toggle"
],
"author": "Fernando Daciuk - @fdaciuk",
"bugs": {
"url": "https://github.com/fdaciuk/react-ff/issues"
},
"homepage": "https://github.com/fdaciuk/react-ff",
"peerDependencies": {
"react": ">=17.x"
},
"devDependencies": {
"@types/node": "16.9.6",
"@types/react": "17.0.24",
"@types/react-dom": "17.0.9",
"@typescript-eslint/eslint-plugin": "4.31.2",
"@typescript-eslint/parser": "4.31.2",
"@vitejs/plugin-react-refresh": "1.3.6",
"babel-eslint": "10.1.0",
"eslint": "7.32.0",
"eslint-config-react-app": "6.0.0",
"eslint-config-standard": "16.0.3",
"eslint-config-standard-jsx": "10.0.0",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-flowtype": "6.1.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.26.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "7.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"typescript": "4.4.3",
"vite": "2.5.10",
"vite-plugin-dts": "0.8.1",
"vite-plugin-linter": "0.2.4",
"vite-tsconfig-paths": "3.3.14"
}
}