-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "create-sara-project",
"version": "2.0.1",
"main": "bin/create-sara-project/index.js",
"bin": {
"create-sara-project": "bin/create-sara-project/index.js"
},
"dependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.11",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"chalk": "^4.1.2",
"framer-motion": "^9.0.1",
"fs-extra": "^11.1.0",
"inquirer": "^8.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4",
"zod": "^3.20.2"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint:ci": "npx --no-install lint-staged",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test": "start-server-and-test start http://localhost:3000 cypress:run",
"prepare": "husky install",
"eject": "react-scripts eject"
},
"keywords": [
"react",
"docker",
"template",
"boilerplate",
"typescript",
"front-end",
"clean-architecture",
"cypress",
"starter"
],
"homepage": "https://github.com/RodrigoTeran/syntactically-awesome-react-app/",
"bugs": "https://github.com/RodrigoTeran/syntactically-awesome-react-app/issues",
"repository": {
"type": "git",
"url": "git@github.com:RodrigoTeran/syntactically-awesome-react-app.git"
},
"author": {
"name": "Rodrigo Teran Hernandez",
"email": "rodrigo.teranhernandez@gmail.com",
"url": "https://github.com/RodrigoTeran"
},
"license": "MIT",
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"cypress": "^12.5.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"start-server-and-test": "^1.15.3",
"tailwindcss": "^3.2.4"
}
}