-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
118 lines (118 loc) · 4.07 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
{
"name": "react-flagpack",
"description": "Gorgeous flag components for your React project.",
"version": "2.0.6",
"author": "Yummygum <info@yummygum.com> (https://yummygum.com)",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Yummygum/react-flagpack.git"
},
"keywords": [
"react",
"react-component",
"languages",
"flag",
"iso",
"flag set",
"countries",
"flag-pack"
],
"files": [
"dist/*"
],
"main": "dist/react-flag.js",
"types": "dist/Flag.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/Yummygum/react-flagpack/issues"
},
"type": "module",
"homepage": "https://flagpack.xyz",
"scripts": {
"dev": "vite",
"build": "rimraf dist && tsc && vite build && npm run generate-flags",
"generate-flags": "tsx cli/generateFlags.ts",
"generate:local": "rm -rf ./react-flagpack.tgz && tar czvf react-flagpack.tgz --exclude=node_modules --exclude=test-applications .",
"dev:install": "yarn cache clean react-flagpack && yarn cache clean ../../react-flagpack.tgz && yarn cache clean react-flagpack.tgz && yarn dev:install:react && yarn dev:install:gatsby && yarn dev:install:next-app-router && yarn dev:install:next-pages-router && yarn dev:install:remix && cd ..",
"dev:install:react": "cd test-applications/create-react-app && yarn install --refresh-lockfile && cd ..",
"dev:install:gatsby": "cd test-applications/test-gatsby && yarn install --refresh-lockfile && cd ..",
"dev:install:next-app-router": "cd test-applications/next-app-router && yarn install --refresh-lockfile && cd ..",
"dev:install:next-pages-router": "cd test-applications/next-pages-router && yarn install --refresh-lockfile && cd ..",
"dev:install:remix": "cd test-applications/remix && yarn install --refresh-lockfile && cd ..",
"dev:test": "concurrently \"yarn dev:react\" \"yarn dev:gatsby\" \"yarn dev:next-app-router\" \"yarn dev:next-pages-router\" \"yarn dev:remix\"",
"dev:react": "cd test-applications && cd create-react-app && yarn start",
"dev:gatsby": "cd test-applications && cd test-gatsby && yarn develop",
"dev:next-app-router": "cd test-applications && cd next-app-router && yarn dev",
"dev:next-pages-router": "cd test-applications && cd next-pages-router && yarn dev",
"dev:remix": "cd test-applications && cd remix && yarn dev"
},
"bin": "./cli/flagpack.js",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"meow": "^13.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@types/node": "^20.11.30",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^9.5.1",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"eslint": "^7.17.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-react-refresh": "^0.4.6",
"flagpack-core": "2.0.0",
"postcss-clean": "^1.1.0",
"rimraf": "^3.0.2",
"sass": "^1.72.0",
"ts-node": "^10.9.2",
"tslib": "^1.9.3",
"tsx": "^4.7.1",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vite-plugin-dts": "^3.8.1"
},
"peerDependencies": {
"react": "^16.8.* || ^17.* || ^18.*"
},
"authors": [
{
"name": "Noud Adrichem",
"social": "@noudadrichem",
"url": "https://noudadrichem.com"
},
{
"name": "Donovan Roubos",
"social": "@donovanroubos",
"url": "https://donovanroubos.nl"
},
{
"name": "Yummygum",
"social": "@yummygum",
"url": "https://yummygum.com"
},
{
"name": "Zoey Frisart",
"social": "@zoeyfrisart",
"url": "https://zoey-frisart.com"
}
],
"packageManager": "yarn@4.1.1"
}