-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "spotify",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint --ignore-path .gitignore \"./*/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"./*/**/*.+(ts|js|tsx)\" --write",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{ts,js,jsx,tsx}": [
"yarn format",
"yarn eslint"
]
},
"dependencies": {
"core-js": "^3.26.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.1",
"immer": "^9.0.16",
"js-cookie": "^3.0.1",
"next": "13.0.1",
"next-i18next": "^12.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.4",
"redux-saga": "^1.2.1",
"request": "^2.88.2",
"styled-components": "^5.3.6"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/eslint-parser": "^7.19.1",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"babel-plugin-styled-components": "^2.0.7",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}