-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
124 lines (124 loc) · 4.03 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
{
"name": "mdtt",
"version": "0.1.0",
"description": "",
"author": "Oleksii Honchar",
"main": "src/index.tsx",
"type": "module",
"scripts": {
"build": "make build",
"build:analyze": "make build-analyze",
"build:loc": "make build-loc",
"build:loc:analyze": "make build-loc-analyze",
"check:all": "run-p lint:fix types:check",
"clean": "rm -rf ./dist",
"launch:loc": "run-p launch:loc:server types:watch",
"launch:loc:server": "npm run clean && make launch-loc-server",
"launch:prod:server": "npm run clean && make launch-prod-server",
"lint": "npx eslint ./src --config .eslintrc.cjs --ext .ts,.tsx,.json --ignore-pattern '/node_modules/*' --ignore-pattern '**/*.d.ts' --ignore-pattern '**/*.spec.ts' --ignore-pattern '/src/assets/**'",
"lint:fix": "npm run lint -- --fix",
"start": "npm run launch:loc",
"types:check": "tsc -p ./.configs/tsconfig.es2022.json",
"types:watch": "npm run types:check -- --watch",
"watch": "run-p types:watch watch:loc",
"watch:loc": "make watch-loc"
},
"license": "MIT",
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.3",
"cross-env": "7.0.3",
"env-cmd": "10.1.0",
"minimist": "1.2.8",
"npm-run-all": "4.1.5",
"ts-node": "10.9.2"
},
"devDependencies": {
"@ciklum/logan": "0.4.10",
"@emotion/eslint-plugin": "11.11.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "11.11.5",
"@floating-ui/react": "^0.26.10",
"@headlessui/tailwindcss": "^0.2.0",
"@material/material-color-utilities": "^0.2.7",
"@tsconfig/node20": "20.1.4",
"@tsconfig/recommended": "1.0.5",
"@types/color": "3.0.6",
"@types/colors": "1.2.1",
"@types/esprima": "4.0.6",
"@types/minimist": "1.2.5",
"@types/node": "20.12.2",
"@types/node-emoji": "1.8.2",
"@types/postcss-import": "14.0.3",
"@types/prop-types": "15.7.12",
"@types/react": "18.2.73",
"@types/react-dom": "18.2.23",
"@types/uuid": "9.0.8",
"@types/webpack-bundle-analyzer": "4.7.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"classnames": "2.5.1",
"cli-spinners": "2.9.2",
"color": "4.2.3",
"colors": "1.4.0",
"compression-webpack-plugin": "11.1.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "7.0.3",
"css-loader": "6.10.0",
"cssnano": "6.1.2",
"cssnano-preset-default": "6.1.2",
"esbuild-loader": "4.1.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-you-dont-need-lodash-underscore": "6.13.0",
"esprima": "4.0.1",
"file-loader": "6.2.0",
"handlebars": "4.7.8",
"install": "^0.13.0",
"joi": "^17.12.2",
"jotai": "^2.7.2",
"mini-css-extract-plugin": "^2.8.1",
"moment": "2.30.1",
"node-emoji": "2.1.3",
"npm": "^10.5.0",
"null-loader": "^4.0.1",
"ora": "8.0.1",
"postcss-discard-comments": "6.0.2",
"postcss-import": "16.1.0",
"postcss-loader": "8.1.1",
"postcss-preset-env": "9.5.3",
"powerful-color-picker": "^2.6.1",
"prettier": "3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"react-router-dom": "^6.22.3",
"react-toastify": "^10.0.5",
"source-map-loader": "5.0.0",
"string-width": "^7.1.0",
"style-loader": "3.3.4",
"sugarss": "4.0.1",
"svg-inline-loader": "0.8.2",
"tailwindcss": "3.4.3",
"to-string-loader": "1.2.0",
"ts-loader": "9.5.1",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.4.3",
"typescript-plugin-css-modules": "5.1.0",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-dev-server": "5.0.4",
"webpack-merge": "5.10.0"
},
"engines": {
"node": "20"
}
}