-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.46 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "sawala-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"test": "jest --env=jsdom --passWithNoTests",
"start": "next start",
"dev": "env NODE_ENV=development TAILWIND_MODE=watch next dev",
"prepare": "husky install",
"lint:ts": "eslint --fix '**/*.{ts,tsx}'",
"test:tsc": "tsc -p . --noEmit",
"lint:staged": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "sh ./.husky/pre-commit",
"pre-push": "sh ./.husky/pre-push",
"commit-msg": "sh ./.husky/commit-msg"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.3.0",
"@headlessui/react": "^1.4.0",
"axios": "^0.21.1",
"next": "^12.0.1",
"nprogress": "^0.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-scroll": "^1.8.4",
"sharp": "0.27.2",
"swr": "^1.2.2"
},
"devDependencies": {
"@babel/plugin-syntax-typescript": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@emotion/babel-plugin": "^11.3.0",
"@testing-library/dom": "^8.1.0",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/react": "^12.0.0",
"@types/jest": "^27.0.0",
"@types/node": "^16.4.10",
"@types/react": "^17.0.4",
"@types/react-dom": "^17.0.7",
"@types/react-scroll": "^1.8.3",
"@types/react-test-renderer": "^17.0.1",
"@types/tailwindcss": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "4.29.1",
"autoprefixer": "^10.2.3",
"babel-jest": "^27.0.6",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-twin": "^1.0.2",
"classnames": "^2.3.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.1.2",
"postcss": "^8.2.4",
"prettier": "^2.3.0",
"react-test-renderer": "^17.0.2",
"sass": "^1.43.4",
"tailwind-filter-utilities": "^2.0.0",
"tailwindcss": "^2.2.7",
"twin.macro": "^2.6.2",
"typescript": "^4.2.4"
},
"browser": {
"buffer": false
}
}