forked from benawad/dogehouse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.77 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
{
"name": "@dogehouse/kibbeh",
"version": "0.1.0",
"private": true,
"scripts": {
"staging": "cross-env NEXT_PUBLIC_IS_STAGING=true NEXT_PUBLIC_API_BASE_URL=https://doge-staging.stripcode.dev next dev",
"dev": "next dev",
"build": "next build",
"start": "next start",
"compile": "tsc",
"lint": "eslint src && stylelint src/styles/",
"format": "prettier --write src",
"storybook": "start-storybook -p 6006 -s ./public",
"build-storybook": "build-storybook -s ./public",
"convert-icons": "svgr ../.redesign-assets/mobile/icons --replace-attr-values '#fff'='currentColor' --replace-attr-values 'none'='currentColor' --typescript --out-dir src/icons",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@dogehouse/kebab": "^0.2.0",
"@svgr/webpack": "^5.5.0",
"date-fns": "^2.19.0",
"emoji-mart": "^3.0.1",
"formik": "^2.2.6",
"hark": "^1.2.3",
"i18next": "^19.9.2",
"normalize-url": "^4.5.0",
"i18next-browser-languagedetector": "^6.0.1",
"i18next-http-backend": "^1.1.1",
"is-electron": "^2.2.0",
"lodash": "^4.17.21",
"mediasoup-client": "^3.6.29",
"next": "10.0.7",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-draggable": "^4.4.3",
"react-hotkeys": "^2.0.0",
"react-i18next": "^11.8.10",
"react-modal": "^3.12.1",
"react-query": "^3.12.2",
"tslib": "^2.1.0",
"uuid": "^8.3.2",
"zustand": "^3.3.3"
},
"devDependencies": {
"@babel/runtime": "^7.13.10",
"@storybook/addon-essentials": "^6.2.0-beta.10",
"@storybook/addon-links": "^6.2.0-beta.10",
"@storybook/react": "^6.2.0-beta.10",
"@storybook/theming": "^6.2.0-beta.10",
"@svgr/cli": "^5.5.0",
"@tailwindcss/line-clamp": "^0.2.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@types/emoji-mart": "^3.0.4",
"@types/hark": "^1.2.1",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@types/react-i18next": "^8.1.0",
"@types/react-modal": "^3.12.0",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"eslint": "^7.21.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"mutationobserver-shim": "^0.3.7",
"next-transpile-modules": "^6.3.0",
"postcss": "^8.2.7",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.2.0",
"prettier": "^2.0.5",
"style-loader": "^1.3.0",
"stylelint": "^13.11.0",
"stylelint-config-standard": "^20.0.0",
"tailwindcss": "^2.0.3",
"typescript": "3.9.5"
}
}