-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.22 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
66
67
68
69
70
71
72
{
"name": "os-nextjs-typescript",
"version": "1.0.0",
"description": "os-nextjs-typescript",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"eslint": "eslint --fix",
"stylelint": "stylelint **/*.tsx",
"prettier": "prettier --write .",
"test": "jest",
"test:watch": "just --watch"
},
"lint-staged": {
"*.{js,scss,md,ts,tsx}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ahmetbasli/OS-NextJS-Typescript.git"
},
"author": "Ahmet Basli",
"license": "MIT",
"homepage": "https://github.com/Ahmetbasli/OS-NextJS-Typescript#readme",
"dependencies": {
"axios": "^1.4.0",
"crypto": "^1.0.1",
"next": "^12.1.4",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-is": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/react": "^18.0.0",
"@types/styled-components": "^5.1.25",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-testing-library": "^5.3.1",
"husky": "^7.0.4",
"install": "^0.13.0",
"jest": "^27.5.1",
"jest-next-dynamic": "^1.0.1",
"lint-staged": "^12.3.7",
"npm": "^8.6.0",
"prettier": "^2.6.2",
"styled-components": "^5.3.5",
"stylelint": "^14.6.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.10.0",
"typescript": "^5.1.6"
}
}