-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.9 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
{
"name": "react-ts-template",
"version": "1.0.0",
"description": "React Typescript Project template",
"keywords": [
"react",
"template",
"boilerplate",
"typescript",
"new-project",
"new-repo"
],
"bugs": {
"url": "https://github.com/timelessco/react-ts-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timelessco/react-ts-template.git"
},
"license": "MIT",
"author": "Navin Moorthy <[email protected]>",
"scripts": {
"build": "react-scripts build",
"commit": "gacp",
"eject": "react-scripts eject",
"format": "prettier --write \"./**/*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}\"",
"format:package": "sort-package-json",
"lint": "eslint . --ext .tsx,.ts,.jsx,.js",
"lint:fix": "eslint . --ext .tsx,.ts,.jsx,.js --fix",
"start": "react-scripts start",
"test": "react-scripts test"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1",
"web-vitals": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@testing-library/user-event": "^12.6.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"gacp": "^2.10.2",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react-scripts": "4.0.1",
"sort-package-json": "^1.48.1",
"typescript": "^4.1.3"
}
}