-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.02 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.02 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
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
{
"name": "its-all-about-cats",
"version": "1.0.0",
"description": "React demo app",
"main": "src/index.ts",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js",
"build": "rimraf dist && NODE_ENV=production webpack --config webpack.prod.js",
"test": "jest --env=jsdom",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint -- --fix",
"pretty": "pretty-quick --branch development",
"prettier-format": "prettier --config .prettierrc '**/*.{json,js,jsx,ts,tsx,css,scss,md}' --write"
},
"author": "Sean Jones",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.8.0",
"core-js": "^3.8.1",
"history": "^4.10.1",
"html-react-parser": "^1.1.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-error-boundary": "^3.1.1",
"react-images-uploading": "^3.1.2",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@testing-library/dom": "^7.28.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@testing-library/user-event": "^12.5.0",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.17",
"@types/node": "^14.14.10",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.2.5",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^8.1.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"file-loader": "^5.1.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^4.3.5",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.4",
"postcss": "^8.2.8",
"postcss-loader": "^4.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^3.1.0",
"redux-mock-store": "^1.5.4",
"resolve-url-loader": "^3.1.2",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.4",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.11",
"tslib": "^2.0.3",
"typescript": "^4.1.2",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.3.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run pretty -- --staged",
"pre-push": "npm run test -- --bail"
}
}
}