-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.53 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
{
"name": "todoredux",
"version": "1.0.0",
"description": "This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).",
"main": "index.js",
"scripts": {
"dev": "npx browserslist@latest --update-db && webpack serve --open --mode development",
"start": "npx webpack serve --env NODE_ENV=local --env production --progress",
"build": "webpack --mode production",
"commit": "npx git-cz",
"coverage": "jest --coverage --testResultsProcessor=jest-sonar-reporter",
"clean": "rm -rf dist",
"test": "jest",
"precommit": "npm-run-all --parallel lint pretty",
"validate": "npm-run-all --parallel check-format lint",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
"pretty": "prettier --ignore-path .gitignore \"**/*.+(js|json|md)\"",
"check-format": "npm run pretty -- --list-different",
"format": "npm run pretty -- --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Loonz206/todoredux.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Loonz206/todoredux/issues"
},
"homepage": "https://github.com/Loonz206/todoredux#readme",
"dependencies": {
"lodash.throttle": "^4.1.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.9",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"sass": "^1.79.3",
"uuid": "8.3.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^12.1.4",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.11.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.36.0",
"eslint-plugin-react-hooks": "^4.6.2",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.0.0",
"msw": "^2.4.5",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.3.4",
"prettier": "^2.8.8",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.4",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^5.0.4"
}
}