-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.83 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
{
"name": "clean-code",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --open",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "npm test -- --coverage",
"test:coveralls": "npm test -- --coverage",
"check": "npx npm-check -u -s",
"prepare": "husky install",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .js,.jsx ."
},
"keywords": [
"react"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rodrigodesp/Clean-Code-Node-React.git"
},
"author": "Rodrigo Pereira",
"license": "ISC",
"bugs": {
"url": "https://github.com/rodrigodesp/Clean-Code-Node-React/issues"
},
"homepage": "https://github.com/rodrigodesp/Clean-Code-Node-React#readme",
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@faker-js/faker": "^7.5.0",
"@testing-library/react": "^13.4.0",
"@types/axios": "^0.14.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.8.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/react-router-dom": "^5.3.3",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"babel-loader": "^8.2.5",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^4.0.0",
"coveralls": "^3.1.1",
"crypto": "^1.0.1",
"css-loader": "^6.7.1",
"eslint": "^7.12.1",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-standard": "^5.0.0",
"git-commit-msg-linter": "^4.2.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.1",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-localstorage-mock": "^2.4.22",
"lint-staged": "^12.4.1",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"npm": "^8.19.2",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/runtime": "^7.19.4",
"axios": "^0.27.2",
"dotenv-webpack": "^8.0.1",
"esm": "^3.2.25",
"history": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.4.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}