-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 3.44 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
{
"name": "react-custom-flag-select",
"version": "3.1.0",
"description": "A react component for custom flag (country code) select.",
"main": "index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/edwardfxiao/react-custom-flag-select"
},
"keywords": [
"flag",
"select",
"country code",
"area code",
"phone code",
"telephone code",
"react-custom-flag-select"
],
"author": "Edward Xiao",
"license": "MIT",
"bugs": {
"url": "https://github.com/edwardfxiao/react-custom-flag-select/issues"
},
"homepage": "https://github.com/edwardfxiao/react-custom-flag-select#readme",
"scripts": {
"test": "NODE_ENV=test jest",
"tslint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"build_gh_page": "rm -rf lib && rm -rf dist && NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/production.config.babel.js --progress",
"umd_local": "./node_modules/.bin/webpack --config ./webpack/umd.local.config.babel.js",
"umd_global": "./node_modules/.bin/webpack --config ./webpack/umd.global.config.babel.js",
"umd_global_min": "./node_modules/.bin/webpack --config ./webpack/umd.global.config.babel.js --env minify",
"dev": "node_modules/.bin/webpack-dev-server --config ./webpack/development.config.babel.js",
"compile": "rimraf dist lib && npm run umd_global && npm run umd_global_min && npm run umd_local && rm ./lib/components/*.css"
},
"peerDependencies": {
"react": ">= 16.8.6",
"react-dom": ">= 16.8.6"
},
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.2",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/register": "^7.17.0",
"@swc/core": "^1.2.139",
"@swc/wasm": "^1.2.139",
"@types/jest": "^27.4.0",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"babel-jest": "^27.5.1",
"babel-loader": "^8.2.3",
"babel-plugin-css-modules-transform": "^1.6.2",
"bufferutil": "^4.0.6",
"chai": "^4.2.0",
"core-js": "^3.21.0",
"coveralls": "^3.1.1",
"css-loader": "^6.4.0",
"cssnano": "^5.0.8",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.13.2",
"esbuild": "^0.14.21",
"eslint": "^8.0.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.1.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.4.0",
"identity-obj-proxy": "^3.0.0",
"inline-style-prefix-all": "^2.0.2",
"jest": "^27.4.0",
"mini-css-extract-plugin": "^2.4.3",
"node-notifier": "^10.0.1",
"postcss-css-variables": "^0.17.0",
"postcss-custom-properties": "^9.1.1",
"postcss-import": "^14.0.2",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^7.3.1",
"postcss-simple-vars": "^6.0.3",
"prismjs": "^1.16.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-inputs-validation": "^4.8.8",
"react-markdown": "^8.0.0",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"url-loader": "^4.1.1",
"utf-8-validate": "^5.0.8",
"validator": "^13.7.0",
"webpack": "^5.68.0",
"webpack-assets-manifest": "^5.1.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
}
}