-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "nextts-emotion-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"test-all": "npm run check-format && npm run check-lint && npm run check-types && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.8.1",
"@mantine/carousel": "^5.2.3",
"@mantine/core": "^5.2.3",
"@mantine/dates": "^5.2.3",
"@mantine/hooks": "^5.2.3",
"@mantine/next": "^5.2.3",
"@tabler/icons": "^1.86.0",
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"embla-carousel-react": "^7.0.1",
"emotion-reset": "^3.0.1",
"next": "12.2.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "^4.4.0",
"react-kakao-maps-sdk": "^1.1.3",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/node": "^17.0.42",
"@types/react": "^18.0.12",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.0",
"husky": "^8.0.0",
"kakao.maps.d.ts": "^0.1.33",
"prettier": "2.6.2",
"typescript": "^4.7.3"
}
}