-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
65 lines (65 loc) · 2.04 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
{
"name": "fari.games",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "^16.2.0"
},
"scripts": {
"start": "vite",
"build": "vite build",
"validate": "npm run lint && npm run tsc",
"serve": "vite build && vite preview",
"lint": "eslint 'src/**' --cache",
"preview": "npm run build && npm run deploy:preview",
"beta": "npm run build && npm run deploy:preview -- --alias beta",
"alpha": "npm run build && npm run deploy:preview -- --alias alpha",
"prod": "npm run build && npm run deploy:preview -- --prod",
"deploy:preview": "netlify deploy --site 624629c9-b542-4ff9-b841-b9613df20cac",
"deploy:prod": "netlify deploy --site 624629c9-b542-4ff9-b841-b9613df20cac --prod",
"tsc": "tsc --project tsconfig.json --incremental --noEmit",
"prepare": "husky install"
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@mui/icons-material": "^5.0.0",
"@mui/material": "^5.0.0",
"immer": "^9.0.2",
"lodash": "^4.17.21",
"netlify-cli": "^6.4.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-helmet-async": "^1.0.9",
"react-router-dom": "^5.2.0",
"react-slick": "^0.28.1",
"remarkable": "^2.0.1",
"slick-carousel": "^1.8.1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.171",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.8",
"@types/react-slick": "^0.23.4",
"@types/remarkable": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@vitejs/plugin-legacy": "^1.5.1",
"@vitejs/plugin-react": "^1.1.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"typescript": "^4.4.2",
"vite": "^2.5.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx,json}": "prettier --write"
}
}