-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "react-project-template",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && eslint --ext .tsx,.ts . && vite build",
"postbuild": "react-snap && prettier --print-width 99999 --write dist/index.html",
"serve": "vite preview",
"start": "vite",
"predeploy": "npm run build",
"deploy": "netlify deploy --prod --dir=dist"
},
"reactSnap": {
"build": "dist"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"useTabs": false,
"bracketSameLine": true
},
"dependencies": {
"classnames": "^2.3.1",
"netlify": "^12.0.1",
"netlify-cli": "^12.0.6",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router": "^5.1.17",
"@types/react-router-dom": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.30.0",
"@vitejs/plugin-react-refresh": "^1.3.1",
"autoprefixer": "^10.3.4",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^6.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.2.0",
"postcss": "^8.3.6",
"prettier": "^2.4.1",
"react-snap": "^0.2.0",
"sass": "^1.39.0",
"tailwindcss": "^2.2.15",
"typescript": "^4.4.2",
"vite": "^2.5.3",
"vite-plugin-checker": "^0.3.4",
"vite-plugin-linter": "^0.2.3"
}
}