This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
84 lines (84 loc) · 2.1 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
{
"name": "instant-username-search",
"version": "1.10.3",
"private": true,
"dependencies": {
"antd": "^3.12.1",
"debounce": "^1.2.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.1"
},
"scripts": {
"start": "react-scripts start",
"mockServer": "node ./dev/mockServer.js",
"dev": "npm-run-all --parallel mockServer start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"commit": "git-cz",
"ci:release": "standard-version",
"ci:release:dry": "yarn ci:release --dry-run",
"lint": "eslint --ext .js,.jsx src/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"git-cz": "^4.7.6",
"husky": "^3.0.4",
"json-server": "^0.16.3",
"lint-staged": "^9.2.4",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"standard-version": "^8.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"description": "👤 Search for the availability of your username on more than 100 social media sites",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/instantusername/instant-username-search.git"
},
"author": "Umut Canbolat",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/instantusername/instant-username-search/issues"
},
"homepage": "https://instantusername.com/",
"keywords": [
"instant-username-search",
"username",
"search"
]
}