forked from doubco/countries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.85 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
{
"name": "@doubco/countries",
"version": "1.2.0",
"description": "Countries, regions, currencies, languages, phone codes, and timezones data formated as JSON.",
"license": "MIT",
"main": "lib/index.js",
"graphql": {
"main": "lib/graphql/index.js"
},
"phoneCodes": {
"main": "lib/phoneCodes/index.js"
},
"timezones": {
"main": "lib/timezones/index.js"
},
"currencies": {
"main": "lib/currencies/index.js"
},
"languages": {
"main": "lib/languages/index.js"
},
"locales": {
"main": "lib/locales/index.js"
},
"regions": {
"main": "lib/regions/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rollup -c -w",
"build": "rollup -c",
"prepare": "npm run build"
},
"keywords": [
"country",
"countries",
"locale",
"locales",
"languages",
"language",
"timezone",
"timezones",
"currency",
"currencies",
"graphql",
"json"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.5.4",
"@rollup/plugin-json": "^4.1.0",
"@types/react": "^17.0.30",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "8.0.1",
"eslint-config-next": "11.1.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/doubco/countries/issues"
},
"homepage": "https://github.com/doubco/countries#readme",
"directories": {
"lib": "lib"
},
"dependencies": {
"graphql-tag": "^2.11.0"
},
"prettier": {
"arrowParens": "always",
"trailingComma": "all"
}
}