-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.73 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.73 KB
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
{
"name": "primeflixdb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@babel/core": "^7.15.5",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.8.2",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@material-ui/core": "^4.12.3",
"@mui/icons-material": "^5.5.1",
"@mui/material": "^5.5.1",
"@reduxjs/toolkit": "^1.8.4",
"gsap": "^3.7.1",
"next": "^12.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-is": "^17.0.2",
"react-redux": "^8.0.2",
"rxjs": "^7.3.0",
"rxjs-hooks": "^0.7.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^17.0.21",
"@types/react": "17.0.19",
"@types/redux-logger": "^3.0.9",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-next": "latest",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-better-styled-components": "^1.1.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^1.8.0",
"husky": "^7.0.0",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"redux-devtools-extension": "^2.13.9",
"redux-logger": "^3.0.6",
"typescript": "^4.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --quiet --fix --no-error-on-unmatched-pattern"
}
}