-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "up-to-date-react-template",
"description": "Open Source always up to date React template",
"author": "ramon morcillo @reymon359",
"homepage": "https://reymon359.github.io/up-to-date-react-template",
"version": "2.0.0",
"license": "MIT",
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"type-check:watch": "tsc -w",
"new:component": "hygen component new",
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc --pretty --noEmit",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"lint:fix": "eslint . --fix --ext ts --ext tsx --ext js",
"test": "jest",
"test:all": "npm run lint && npm run type-check && npm run test",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm lint",
"npm format"
]
},
"dependencies": {
"gh-pages": "3.2.3",
"hygen": "6.2.7",
"next": "latest",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"@testing-library/react": "12.1.5",
"@types/jest": "27.5.2",
"@types/node": "14.18.21",
"@types/react": "17.0.47",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"babel-jest": "26.6.3",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-standard": "4.1.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "26.6.3",
"jest-watch-typeahead": "0.6.5",
"lint-staged": "11.2.6",
"prettier": "2.7.1",
"typescript": "4.7.4"
}
}