-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.58 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
{
"name": "react-ts-todo-app",
"version": "1.0.0",
"description": "This is a demo project in Understanding Typescript with Maximilian Schwarzmuller.",
"main": "index.tsx",
"scripts": {
"start": "webpack serve --config webpack.dev.js --open-app-name chrome",
"build:dev": "webpack serve --config webpack.dev.js --open-app-name chrome",
"build:ts": "tsc --noEmit --watch",
"build:prod": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sho-ayb/react-typescript-todo-max.git#main"
},
"keywords": [
"react-typescript",
"react",
"typescript",
"todo-app"
],
"author": "Sho'ayb",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sho-ayb/react-typescript-todo-max/issues"
},
"homepage": "https://github.com/Sho-ayb/react-typescript-todo-max/tree/main#readme",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.3",
"@babel/preset-typescript": "^7.24.7",
"@beyonk/google-fonts-webpack-plugin": "^1.7.0",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.10.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-webpack-plugin": "^4.1.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"prettier": "^3.2.5",
"sass": "^1.72.0",
"sass-loader": "^14.1.1",
"source-map-loader": "^5.0.0",
"style-loader": "^3.3.4",
"stylelint": "^16.2.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-prettier": "^5.0.0",
"stylelint-webpack-plugin": "^5.0.0",
"terser-webpack-plugin": "^5.3.10",
"typescript": "^5.5.3",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.3",
"webpack-merge": "^5.10.0"
}
}