-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.28 KB
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
{
"name": "react-skeleton",
"version": "1.0.0",
"description": "A skeleton for react based applications",
"main": "index.js",
"scripts": {
"start": "ts-node .webpack/dev-server",
"build": "wp --config .webpack/config.production.ts",
"serve": "serve ./dist",
"format": "prettier --write \"src/**/*.ts\"",
"code:check": "yarn code:lint; yarn code:format --check",
"code:clean": "yarn code:lint --fix; yarn code:format --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}'",
"prepare": "husky install"
},
"author": "olefirenk@gmail.com",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@types/progress-bar-webpack-plugin": "^2.1.2",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@types/webpack-env": "^1.13.6",
"@types/webpack-hot-middleware": "^2.25.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"copy-webpack-plugin": "^11.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-webpack-plugin": "^3.1.1",
"express": "^4.16.3",
"file-loader": "^6.0.0",
"fork-ts-checker-webpack-plugin": "^7.2.1",
"html-webpack-plugin": "^5.5.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"progress-bar-webpack-plugin": "^2.1.0",
"react-refresh": "^0.13.0",
"react-refresh-typescript": "^2.0.5",
"serve": "^13.0.2",
"terser-webpack-plugin": "^5.3.3",
"ts-loader": "^9.3.1",
"ts-node": "^10.8.1",
"typescript": "^4.1.5",
"url-loader": "^4.1.0",
"webpack": "^5.73.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.1",
"webpack-merge": "^5.8.0",
"webpack-nano": "^1.1.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,jsx,ts,tsx,json,gql,html,md,yml}": "prettier --write"
}
}