-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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
{
"name": "@skeleton/typescript-react-antd",
"private": true,
"description": "Antd React Typescript boilerplate",
"repository": {
"url": "https://github.com/hiberbee/hiberbee.github.io"
},
"keywords": [
"project",
"typescript",
"react",
"antd"
],
"maintainers": [
{
"name": "Vlad Volkov",
"email": "vlad@hiberbee.com",
"url": "https://github.com/vladyslavvolkov"
}
],
"author": {
"name": "Vlad Volkov",
"email": "vlad@hiberbee.com",
"url": "https://github.com/vladyslavvolkov"
},
"homepage": "https://hiberbee.github.io",
"main": "src/index.tsx",
"dependencies": {
"@types/node": "^13.13.0",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.6",
"@types/react-router-dom": "^5.1.4",
"antd": "^4.1.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.1",
"rimraf": "^3.0.2",
"gh-pages": "^2.2.0",
"typescript": "^3.8.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"prettier": "^2.0.4",
"serve": "^11.3.0"
},
"scripts": {
"build": "NODE_ENV=production yarn clean && yarn react-scripts build",
"clean": "yarn rimraf build",
"lint": "yarn tsc && yarn prettier --write src && yarn eslint 'src/**/*.{js,ts,tsx}' --quiet --fix",
"start": "yarn serve -s build",
"deploy": "yarn build && yarn gh-pages -b master -d build",
"watch": "HTTPS=true SSL_CRT_FILE=certs/tls.crt SSL_KEY_FILE=certs/tls.key NODE_ENV=production yarn react-scripts start"
},
"engines": {
"npm": "^6.0",
"yarn": "^1.20"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}