-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.64 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
{
"name": "zenext",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "yarn tsc --noEmit",
"eslint": "eslint ./src --ext .jsx,.ts,.tsx,.js --cache",
"prettier": "prettier \"src/**/*\"",
"stylelint": "stylelint './src/**/*.tsx' --cache --cache-location '.stylelintcache'",
"check": "yarn type-check && yarn eslint && yarn prettier --list-different && yarn stylelint",
"lint-fix": "yarn eslint --fix && yarn prettier --check && yarn stylelint --fix"
},
"dependencies": {
"@fisch0920/use-dark-mode": "^2.4.0",
"next": "12.3.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"styled-components": "^5.3.6",
"typescript": "4.9.5"
},
"devDependencies": {
"@types/node": "18.13.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.8.3",
"stylelint": "^14.16.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-styled-components": "^0.1.1"
}
}