-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.71 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
126
{
"name": "with-typescript",
"version": "1.0.0",
"packageManager": "yarn@1.22.19",
"license": "MIT",
"scripts": {
"start-dev": "next dev -p 3006",
"build": "NODE_ENV=production next build",
"export": "next export",
"start": "next start",
"type-check": "tsc",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix",
"lint": "eslint --ignore-path .eslintignore",
"fix": "yarn lint:ts --fix",
"lint-staged": "lint-staged",
"format": "eslint -c .eslintrc.js --ignore-path .eslintignore --fix",
"git-add": "git add .",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"typecheck": "tsc-files --noEmit",
"setup": "./bin/setup.sh"
},
"dependencies": {
"@faker-js/faker": "^7.6.0",
"@fingerprintjs/fingerprintjs": "^4.0.1",
"@firebase/auth-types": "^0.10.2",
"@next/eslint-plugin-next": "^11.1.2",
"@sentry/browser": "^6.5.1",
"@sentry/tracing": "^6.5.1",
"@stripe/react-stripe-js": "^1.4.1",
"@stripe/stripe-js": "^1.15.0",
"@types/faker": "^6.6.9",
"@types/jsonwebtoken": "^8.5.0",
"@types/stripe": "^8.0.417",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"@zeit/next-source-maps": "^0.0.3",
"antd": "^5.8.4",
"antd-img-crop": "^4.12.2",
"apexcharts": "^3.24.0",
"axios": "^1.4.0",
"chart.js": "^4.1.0",
"cropperjs": "^1.5.12",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"eslint-config-next": "^13.4.19",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"firebase": "^10.2.0",
"formik": "^2.2.6",
"google-meet-api": "^1.0.0",
"jsonwebtoken": "^8.5.1",
"madge": "^5.0.1",
"moment": "^2.29.1",
"next": "^13.4.12",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.7.0",
"next-pwa": "^5.3.1",
"nprogress": "^0.2.0",
"optimize-css-assets-webpack-plugin": "^6.0.0",
"react": "^18.2.0",
"react-apexcharts": "^1.3.7",
"react-calendar": "^3.4.0",
"react-chartjs-2": "^5.0.1",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.3",
"react-grid-layout": "^1.2.2",
"react-i18next": "^11.12.0",
"react-image-crop": "^9.0.4",
"react-map-gl": "^6.1.16",
"react-otp-input": "^2.4.0",
"react-query": "^3.5.16",
"react-share": "^4.3.1",
"react-slick": "^0.28.1",
"sass": "^1.30.0",
"sass-loader": "10.1.1",
"styled-components": "^5.3.0",
"terser-webpack-plugin": "^5.2.4",
"typescript": "^4.4.4",
"wavesurfer.js": "^7.0.6",
"yup": "^0.32.8"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@storybook/addon-actions": "^6.3.9",
"@storybook/addon-essentials": "^6.3.9",
"@storybook/addon-links": "^6.3.9",
"@storybook/react": "^6.3.9",
"@types/chart.js": "^2.9.37",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-grid-layout": "^1.1.1",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.12.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"husky": "^8.0.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{js,jsx}": [
"yarn stylelint",
"yarn format",
"git-add"
],
"*.{ts,tsx}": [
"yarn typecheck",
"yarn stylelint",
"yarn format",
"git-add"
]
},
"pre-commit": [
"lint-staged"
]
}