-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
{
"name": "autocomplete-input",
"private": true,
"version": "0.0.1",
"main": "pages/_app.tsx",
"author": "Michael Kubín",
"scripts": {
"dev": "next dev",
"dev:https": "local-ssl-proxy --source 3001 --target 3000",
"build": "next build",
"export": "next export",
"start": "next start",
"start:https": "node server.js",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prepare": "husky install",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@radix-ui/react-label": "^0.1.5",
"@stitches/react": "^1.2.7",
"framer-motion": "^6.2.8",
"luxon": "^2.3.0",
"next": "^12.1.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@next/eslint-plugin-next": "^12.0.10",
"@react-hook/media-query": "^1.1.1",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.11",
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^12.1.4",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/luxon": "^2.0.9",
"@types/node": "^17.0.17",
"@types/react": "17.0.39",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"babel-loader": "^8.2.5",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-next": "12.0.10",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"postcss": "^8.4.6",
"ts-jest": "^27.1.4",
"typescript": "^4.5.5"
}
}