-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
114 lines (114 loc) · 3.86 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
{
"name": "template-for-react-ts-ssr-hmr",
"version": "2.0.2",
"description": "Template for a project with React, TypeScript, Server-Side Rendering (SSR), Hot Module Replacing (HMR). The template implies the use of CSS Modules and Stylus.",
"repository": {
"type": "git",
"url": "https://github.com/Kallenju/template-for-react-ts-ssr-hmr.git"
},
"keywords": [
"template",
"React",
"TypeScript",
"SSR",
"HMR",
"template-for-react-ts-ssr-hmr"
],
"author": "Konstantin Solovev [email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kallenju/template-for-react-ts-ssr-hmr/issues"
},
"homepage": "https://github.com/Kallenju/template-for-react-ts-ssr-hmr#readme",
"browserslist": {
"development": [
"last 2 Chrome versions"
],
"production": [
"defaults"
]
},
"scripts": {
"dev": "set DOTENV=development&&node ./bin/dev.js",
"build:dev": "set DOTENV=development&&webpack --config ./webpack.config.js",
"build:prod": "set DOTENV=production&&webpack --config ./webpack.config.js",
"test": "set DOTENV=test&&jest",
"test:watch": "set DOTENV=test&&jest --watch",
"lint": "eslint ./src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix ./src/**/*.{js,jsx,ts,tsx,json}",
"prettier": "prettier --check --config ./.prettierrc.js ./src/**/*.{js,jsx,ts,tsx,css,md,json}",
"prettier:fix": "prettier --write --config ./.prettierrc.js ./src/**/*.{js,jsx,ts,tsx,css,md,json}",
"check-types": "tsc"
},
"dependencies": {
"core-js": "^3.26.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-test-renderer": "^18.0.0",
"@types/webpack-hot-middleware": "^2.25.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"assets-webpack-plugin": "^7.1.1",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"browserslist": "^4.21.4",
"clean-webpack-plugin": "^4.0.0",
"compression": "^1.7.4",
"copy-webpack-plugin": "^11.0.0",
"cors": "^2.8.5",
"css-loader": "^6.7.2",
"cssnano": "^5.1.14",
"dotenv": "^16.0.3",
"eslint": "8.29.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.18.2",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"identity-obj-proxy": "^3.0.0",
"image-minimizer-webpack-plugin": "^3.8.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"mini-css-extract-plugin": "^2.7.2",
"nodemon": "^2.0.20",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.2",
"postcss-merge-rules": "^5.1.3",
"prettier": "^2.8.0",
"react-refresh": "^0.14.0",
"react-test-renderer": "^18.2.0",
"sharp": "^0.31.2",
"string-replace-loader": "^3.1.0",
"style-loader": "^3.3.1",
"stylus": "^0.59.0",
"stylus-loader": "^7.1.0",
"ts-jest": "^29.0.3",
"typescript": "4.9.3",
"typescript-plugin-css-modules": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-middleware": "^6.0.1",
"webpack-hot-middleware": "^2.25.3",
"webpack-node-externals": "^3.0.0"
}
}