-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 4.04 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
127
128
{
"name": "ts-react-tmpl",
"version": "1.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",
"cm": "npx git-cz",
"check:all": "run-p lint:fix types:check",
"launch:loc": "run-p launch:loc:server types:watch",
"launch:loc:server": "make launch-loc-server",
"launch:prod:server": "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",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"license": "MIT",
"dependencies": {
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"cross-env": "7.0.3",
"env-cmd": "10.1.0",
"minimist": "1.2.8",
"npm-run-all": "4.1.5",
"ts-node": "10.9.1"
},
"devDependencies": {
"@ciklum/logan": "0.4.10",
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@emotion/eslint-plugin": "11.11.0",
"@emotion/react": "11.11.1",
"@emotion/styled": "11.11.0",
"@hapi/joi": "17.1.0",
"@tsconfig/node20": "20.1.2",
"@tsconfig/recommended": "1.0.3",
"@types/color": "3.0.5",
"@types/colors": "1.2.1",
"@types/esprima": "4.0.5",
"@types/hapi__joi": "17.1.12",
"@types/joi": "^17.2.3",
"@types/minimist": "1.2.4",
"@types/node": "20.8.7",
"@types/node-emoji": "1.8.2",
"@types/postcss-import": "14.0.2",
"@types/prop-types": "15.7.9",
"@types/react": "18.2.29",
"@types/react-dom": "18.2.14",
"@types/uuid": "9.0.6",
"@types/webpack-bundle-analyzer": "4.6.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"classnames": "2.3.2",
"cli-spinners": "2.9.1",
"color": "4.2.3",
"colors": "1.4.0",
"commitizen": "4.3.0",
"compression-webpack-plugin": "10.0.0",
"copy-webpack-plugin": "11.0.0",
"cross-env": "7.0.3",
"css-loader": "6.8.1",
"cssnano": "6.0.1",
"cssnano-preset-default": "6.0.1",
"cz-conventional-changelog": "3.3.0",
"esbuild-loader": "4.0.2",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-you-dont-need-lodash-underscore": "6.13.0",
"esprima": "4.0.1",
"file-loader": "6.2.0",
"handlebars": "4.7.8",
"husky": "8.0.3",
"joi": "^17.11.0",
"mini-css-extract-plugin": "^2.7.6",
"moment": "2.29.4",
"node-emoji": "2.1.0",
"ora": "7.0.1",
"postcss-discard-comments": "6.0.0",
"postcss-import": "15.1.0",
"postcss-loader": "7.3.3",
"postcss-preset-env": "9.2.0",
"prettier": "3.0.3",
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.11.0",
"react-router-dom": "^6.17.0",
"source-map-loader": "4.0.1",
"string-width": "^6.1.0",
"style-loader": "3.3.3",
"sugarss": "4.0.1",
"svg-inline-loader": "0.8.2",
"tailwindcss": "3.3.3",
"to-string-loader": "1.2.0",
"ts-loader": "9.5.0",
"tsconfig-paths": "4.2.0",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.2.2",
"typescript-plugin-css-modules": "5.0.2",
"webpack": "5.89.0",
"webpack-bundle-analyzer": "4.9.1",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.10.0"
},
"engines": {
"node": "21"
}
}