-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.85 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.85 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
{
"name": "user-management",
"version": "1.0.0",
"description": "",
"main": "src/index.tsx",
"scripts": {
"build": "rimraf dist && NODE_ENV=production webpack --config webpack.prod.js",
"start": "webpack serve --config webpack.dev.js",
"serve": "node src/server.js",
"test": "jest --env=jsdom",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --fix",
"pretty": "pretty-quick --branch development",
"prettier-format": "prettier --config .prettierrc '**/*.{json,js,jsx,ts,tsx,css,scss,md}' --write",
"postinstall": "npm run build"
},
"author": "Sean Jones",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/cssmonkey/user-management.git"
},
"dependencies": {
"@reduxjs/toolkit": "^1.5.0",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"express": "^4.17.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-saga": "^1.1.3"
},
"devDependencies": {
"@testing-library/dom": "^7.29.6",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.7.3",
"@types/classnames": "^2.2.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/react-dom": "^17.0.1",
"@types/react-redux": "^7.1.16",
"@types/redux-mock-store": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"css-loader": "^5.1.0",
"eslint": "^7.21.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-html": "^6.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.5.0",
"postcss": "^8.2.6",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"prettier-quick": "0.0.5",
"pretty-quick": "^3.1.0",
"redux-mock-store": "^1.5.4",
"resolve-url-loader": "^3.1.2",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"tailwindcss": "^2.0.3",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run pretty -- --staged",
"pre-push": "npm run test -- --bail"
}
},
"engines": {
"node": "12.14.1"
}
}