-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.83 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
{
"name": "edna-ui",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"dev": "webpack --mode=development",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx && tsc --pretty --noEmit",
"lint-fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix && tsc --pretty --noEmit",
"start": "webpack serve --mode=development",
"clean-install": "rm -rf node_modules && npm cache verify && npm ci",
"release": "dotenv release-it"
},
"keywords": [],
"author": "Kawin Pechetratanapanit",
"license": "ISC",
"browserslist": [
"defaults",
">0.5%",
"last 2 versions",
"not dead",
"not op_mini all"
],
"babelMacros": {
"twin": {
"config": "tailwind.config.js",
"format": "auto"
}
},
"dependencies": {
"@emotion/css": "^11.1.3",
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@hookform/resolvers": "^1.2.0",
"@reduxjs/toolkit": "^1.5.0",
"@seznam/compose-react-refs": "^1.0.5",
"@types/lodash": "^4.14.166",
"@types/react-redux": "^7.1.14",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"clsx": "^1.1.1",
"lodash": "^4.17.20",
"phosphor-react": "^1.1.2",
"preact": "^10.5.8",
"react-hook-form": "^6.13.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"react-svg-loader": "^3.0.3",
"tailwindcss": "^2.0.2",
"twin.macro": "^2.0.7",
"zod": "^1.11.11"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@emotion/babel-plugin": "^11.1.2",
"@release-it/keep-a-changelog": "^2.2.2",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/custom-forms": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^3.0.1",
"brotli-webpack-plugin": "^1.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.1.1",
"core-js": "^3.8.2",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"dotenv-cli": "^4.0.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^6.0.8",
"html-inline-css-webpack-plugin": "^1.9.1",
"html-webpack-harddisk-plugin": "^1.0.2",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.0.0-beta.4",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"mini-css-extract-plugin": "^1.3.3",
"postcss": "^8.1.14",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.2.1",
"react-dev-utils": "^11.0.1",
"release-it": "^14.2.2",
"style-loader": "^2.0.0",
"tailwindcss-debug-screens": "^2.0.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^5.11.1",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.1"
}
}