-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.63 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
{
"name": "gmail-clone",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"gen-env": "npx gen-env-types .env.local -o src/types/env.d.ts -e .",
"prepare": "husky install",
"format": "prettier --write ./src",
"check-format": "prettier --check ./src",
"check-lint": "eslint ./src --ext ts --ext tsx",
"check-types": "tsc --pretty --noEmit",
"test-all": "yarn check-format && yarn check-lint && yarn check-types && yarn build"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"firebase": "^9.3.0",
"formik": "^2.2.9",
"mobx": "^6.3.6",
"mobx-react-lite": "^3.2.2",
"moment": "^2.29.1",
"next": "12.0.3",
"next-seo": "^4.28.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-infinite-scroll-component": "^6.1.0",
"react-spinners": "^0.11.0",
"styled-components": "^5.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/react": "^17.0.34",
"@types/styled-components": "^5.1.15",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.26.1",
"gen-env-types": "^1.3.0",
"husky": "^7.0.4",
"prettier": "^2.4.1",
"stylelint": "^14.0.1",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^4.4.4"
}
}