-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 KB
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": "template-react-typescript-solid",
"version": "1.0.0",
"description": "Pre-configured custom template with best libraries for clean-code.",
"main": "template.json",
"engines": {
"node": ">=16.0.0"
},
"author": "Gabriel Bizzi <blitzcorvinato@gmail.com> (https://github.com/GabrielBizzi)",
"bugs": {
"url": "https://github.com/GabrielBizzi/bizzi-standard-react-typescript/issues"
},
"license": "MIT",
"scripts": {
"prepare": "husky install",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix ' src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md ,json}' --config ./.prettierrc",
"commit": "git-cz",
"test": "jest",
"start": "echo \"Error: no start script specified\" && exit 1",
"eject": "echo \"Error: no eject script specified\" && exit 1",
"dev": "vite --open --port 3000",
"build": "tsc && vite build",
"preview": "vite preview --host --port 8081"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": "prettier --write --ignore-unknown"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@swc/core": "^1.3.37",
"@swc/jest": "^0.2.24",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-react": "^3.1.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-sonar-reporter": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.1.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"react",
"create-react-app",
"template",
"typescript",
"husky",
"standard"
]
}