-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.33 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": "next-typescript-tailwind",
"version": "2.1.0",
"author": "Alaa Zorkane <https://github.com/alaazorkane>",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint:eslint": "eslint 'src/**/*.{js,ts,tsx}'",
"fix:eslint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"lint:prettier": "prettier --check src/**/*.js",
"fix:prettier": "prettier --write \"src/**/*.js\""
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"next": "^9.5.4",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@types/react": "^16.9.46",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"stylelint": "^13.6.1",
"stylelint-config-recommended": "^3.0.0",
"tailwindcss": "^1.8.13",
"typescript": "4.0.3"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix --max-warnings=0 --cache"
]
},
"license": "MIT"
}