-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 3.76 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "dnd-7th-3-frontend",
"version": "0.0.1",
"license": "MIT",
"author": "dnd-7th-3-frontend",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:watchAll": "jest --watchAll",
"test:watch:coverage": "jest --watch --coverage",
"test:watchAll:coverage": "jest --watchAll --coverage",
"test:coverage": "yarn test:unit --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"test:e2e": "start-server-and-test dev http://localhost:3000 cypress:run",
"prepare": "husky install",
"sb": "start-storybook -p 6006",
"build-sb": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnd-side-project/dnd-7th-3-frontend.git"
},
"bugs": {
"url": "https://github.com/dnd-side-project/dnd-7th-3-frontend/issues"
},
"homepage": "https://github.com/dnd-side-project/dnd-7th-3-frontend#readme",
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@tanstack/react-query": "^4.0.10",
"@tanstack/react-query-devtools": "^4.0.10",
"axios": "^0.27.2",
"emotion-normalize": "^11.0.1",
"facepaint": "^1.2.1",
"next": "^12.2.4",
"next-compose-plugins": "^2.2.1",
"next-pwa": "5.5.4",
"qs": "^6.11.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-input-range": "^1.3.0",
"react-spring": "^9.5.2",
"react-use": "^17.4.0",
"recoil": "^0.7.4",
"sharp": "^0.30.7"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@emotion/eslint-plugin": "^11.7.0",
"@mdx-js/react": "^1.6.22",
"@next/eslint-plugin-next": "^12.2.0",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-docs": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/testing-library": "^0.0.13",
"@svgr/webpack": "^6.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/babel__core": "^7",
"@types/facepaint": "^1",
"@types/jest": "^28.1.3",
"@types/jest-plugin-context": "^2",
"@types/navermaps": "^3.0.17",
"@types/node": "18.0.0",
"@types/qs": "^6",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@types/react-test-renderer": "^18.0.0",
"@types/sharp": "^0",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-loader": "^8.2.5",
"cypress": "^10.2.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-storybook": "^0.6.1",
"eslint-plugin-testing-library": "^5.5.1",
"eslint-plugin-unused-imports": "^2.0.0",
"given2": "^2.1.7",
"husky": "^8.0.1",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"jest-plugin-context": "^2.9.0",
"lint-staged": "^13.0.3",
"react-test-renderer": "^18.2.0",
"start-server-and-test": "^1.14.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.4"
}
}