-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
90 lines (90 loc) · 3.18 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
{
"name": "react-boilerplate",
"version": "0.0.0",
"scripts": {
"dev": "concurrently --kill-others \"npm run watch:css\" \"vite\"",
"build": "tsc && npm run build:css && vite build",
"serve": "vite preview",
"test": "jest",
"test:update": "jest --updateSnapshot",
"cy:component": "cypress run --component",
"cy:open": "cypress open",
"lint": "eslint ./src",
"prettier": "prettier --check ./",
"formatPretty": "prettier --write ./",
"formatLint": "eslint --fix .",
"build:css": "postcss src/style/tailwind.css -o src/style/main.css",
"watch:css": "postcss src/style/tailwind.css -o src/style/main.css --watch",
"deploy": "aws s3 sync ./dist/ s3://answerking-bucket-react --delete --exclude '*' --include '*.css' --include '*.js'",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-common-types": "^6.3.0",
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.11",
"@types/cypress": "^1.1.3",
"autoprefixer": "^10.4.13",
"classnames": "^2.3.2",
"cypress": "^12.3.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-cypress": "^2.12.1",
"framer-motion": "^8.5.2",
"postcss-cli": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.43.1",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.1",
"react-toastify": "^9.0.8",
"tailwindcss": "^3.2.4",
"yup": "^1.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.19",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react": "^3.1.0",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.0",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.4.1",
"lint-staged": "^13.1.2",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"sass": "^1.57.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"vite": "^4.0.1"
},
"engines": {
"node": "^18.14 || ^16",
"npm": "^9 || ^8"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": "npm run formatPretty",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "npm run formatLint"
}
}