-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
125 lines (125 loc) · 4.55 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
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "wdssuperv2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test-execute": "yarn build && yarn start",
"clean": "rimraf \"{.next,dist,build,out}\"",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"svgr": "npx @svgr/cli -d src/components/icons --ignore-existing --icon --typescript public/icons",
"build:analyze": "cross-env ANALYZE=true npm run build",
"apollo:download-schema": "apollo client:download-schema schema.graphql",
"apollo:generate-types": "rm -rf __generated__ && apollo client:codegen --target typescript --outputFlat",
"apollo:sync": "npm run apollo:download-schema && npm run apollo:generate-types",
"lint": "eslint --rule \"@typescript-eslint/no-unused-vars: off\" \"**/*.{js,jsx,ts,tsx}\" --fix",
"prettier": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"test": "jest -c test/jest.config.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run --config video=false",
"cypress:test": "start-server-and-test test-execute http://localhost:3000 cypress:run"
},
"dependencies": {
"@apollo/client": "^3.3.20",
"@fontsource/open-sans": "^4.4.5",
"@fontsource/satisfy": "^4.4.5",
"@headlessui/react": "^1.2.0",
"@next/bundle-analyzer": "^11.0.1",
"@reach/portal": "^0.15.0",
"@reduxjs/toolkit": "^1.6.0",
"@tailwindcss/forms": "^0.3.3",
"@types/jest": "^26.0.23",
"axios": "^0.21.1",
"body-scroll-lock": "^3.1.5",
"classnames": "^2.3.1",
"framer-motion": "^4.1.17",
"graphql": "^15.5.1",
"js-cookie": "^2.2.1",
"lodash": "^4.17.21",
"next": "^11.0.1",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^8.5.1",
"next-pwa": "^5.2.21",
"next-seo": "^4.25.1",
"overlayscrollbars": "^1.13.1",
"overlayscrollbars-react": "^0.2.2",
"prettier": "^2.3.1",
"rc-drawer": "^4.3.1",
"react": "^17.0.2",
"react-content-loader": "^6.0.3",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.8.8",
"react-icons": "^4.2.0",
"react-query": "^3.17.2",
"react-rating-stars-component": "^2.2.0",
"react-redux": "^7.2.4",
"react-scroll": "^1.8.2",
"react-sticky-box": "^0.9.3",
"react-tabs": "^3.2.2",
"react-toastify": "^7.0.4",
"react-use": "^17.2.4",
"swiper": "^6.7.0",
"swr": "^0.5.6"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@storybook/addon-actions": "^6.3.0",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-knobs": "^6.3.0",
"@storybook/addon-links": "^6.3.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.3.0",
"@svgr/cli": "^5.5.0",
"@types/body-scroll-lock": "^2.6.1",
"@types/enzyme": "^3.10.8",
"@types/js-cookie": "^2.2.6",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.4",
"@types/overlayscrollbars": "^1.12.0",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.8",
"@types/react-redux": "^7.1.16",
"@types/react-scroll": "^1.8.2",
"@types/react-tabs": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"autoprefixer": "^10.2.6",
"babel-loader": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"cypress": "^7.6.0",
"dotenv": "^10.0.0",
"enzyme": "^3.11.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"nock": "^13.1.0",
"postcss": "^8.3.5",
"start-server-and-test": "^1.12.5",
"style-loader": "^2.0.0",
"tailwindcss": "^2.2.4",
"tailwindcss-rtl": "^0.7.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint -- --quiet --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}