forked from wei/socialify
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.38 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
{
"name": "socialify",
"version": "1.0.0",
"description": "Socialify your project. Share with the world!",
"author": "@CryogenicPlanet, @wei",
"license": "MIT",
"repository": "https://github.com/wei/socialify.git",
"scripts": {
"dev": "next dev -p ${PORT-3000}",
"debug": "NODE_OPTIONS='--inspect' next",
"build": "next build",
"start": "node server.js",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "yarn lint --fix",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"verify": "yarn prettier"
},
"dependencies": {
"@ant-design/icons": "^4.6.2",
"antd": "^4.7.3",
"copee": "^1.0.6",
"hero-patterns": "^2.1.0",
"next": "^10.0.0",
"node-fetch": "^2.6.1",
"rc-menu": "^9.0.10",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-jsx": "^3.3.1",
"typescript": "~4.0.5",
"use-debounce": "^5.0.1"
},
"devDependencies": {
"@types/lodash": "^4.14.162",
"@types/node": "^14.14.5",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.54",
"@types/react-dom": "^16.9.9",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^15.0.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.0.2",
"google-fonts-plugin": "^5.0.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"prettier-config-standard": "^1.0.1",
"webpack": "^4.41.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn verify"
}
},
"resolutions": {
"webpack": "^4.41.0"
}
}