-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.97 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"build:css": "tailwind build assets/css/index.css -c tailwind.config.js -o assets/css/main.css",
"build:postcss": "postcss build assets/css/index.css -c tailwind.config.js -o assets/css/main.css",
"analyze:tailwind-css-class-order": "rustywind --dry-run .",
"analyze": "yarn analyze:tailwind-css-class-order",
"fix:tailwind-css-class-order": "rustywind --write .",
"fix": "yarn fix:tailwind-css-class-order",
"export": "yarn build && next export",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"dev": "next dev -p 3001",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"build": "next build"
},
"dependencies": {
"@babel/plugin-proposal-do-expressions": "^7.12.1",
"@date-io/date-fns": "^1.3.13",
"@savvywombat/tailwindcss-grid-areas": "^1.3.2",
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/line-clamp": "^0.2.0",
"@types/react-datepicker": "^3.1.8",
"ahooks": "^2.10.0",
"axios": "^0.21.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-es2020": "^1.0.2",
"babel-preset-react-optimize": "^1.0.1",
"cssnano": "^4.1.10",
"date-fns": "^2.16.1",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"formik": "^2.2.6",
"global": "^4.4.0",
"jwt-decode": "^3.1.2",
"lint": "^0.7.0",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"multiselect-react-dropdown": "^1.6.11",
"next": "^10.2.0",
"next-redux-wrapper": "^6.0.2",
"nextjs-breadcrumbs": "^0.9.9",
"postcss": "^8.2.8",
"postcss-cli": "^8.3.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"query-string": "^6.14.1",
"react": "17.0.1",
"react-cookie": "^4.0.3",
"react-data-table-component": "^6.11.7",
"react-datepicker": "^3.6.0",
"react-dom": "17.0.1",
"react-redux": "^7.2.2",
"react-select": "^3.2.0",
"react-select-country-list": "^2.2.3",
"react-toastify": "^6.2.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-saga": "^1.1.3",
"styled-components": "^5.2.1",
"tailwindcss": "^2.0.3",
"yarn": "^1.22.10",
"yup": "^0.29.3"
},
"eslintConfig": {
"extends": "next"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@types/node": "^14.14.31",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"autoprefixer": "^10.0.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-react-hooks": "^4.1.2",
"prop-types": "^15.7.2",
"typescript": "^4.2.3"
}
}