-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
116 lines (116 loc) · 3.37 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mern-client",
"version": "0.1.0",
"description": "Client for MERN Boilerplate",
"main": "client/index.js",
"scripts": {
"build": "./scripts/build.sh",
"start": "./scripts/start.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest client --config=./config/jest.config.js",
"test:verbose": "jest client --config=./config/jest.config.js --verbose",
"test:coverage": "jest client --config=./config/jest.config.js --coverage",
"test:watch": "jest client --config=./config/jest.config.js --watch"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/djizco/mern-client.git"
},
"author": {
"name": "Federico Rojas",
"email": "[email protected]",
"url": "https://github.com/djizco"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/djizco/mern-client/issues"
},
"keywords": [
"react",
"redux",
"webpack",
"material-ui",
"bulma",
"fontawesome",
"ramda",
"eslint",
"jest"
],
"homepage": "https://github.com/djizco/mern-client#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-brands-svg-icons": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/material": "^5.14.13",
"animate.css": "^4.1.1",
"bulma": "0.9.4",
"classnames": "^2.3.2",
"core-js": "^3.33.0",
"date-fns": "^2.30.0",
"history": "^5.3.0",
"immutability-helper": "^3.1.1",
"prop-types": "^15.8.1",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-bulma-companion": "0.5.5",
"react-dom": "^18.2.0",
"react-notifications-component": "^4.0.1",
"react-redux": "^8.1.3",
"react-router": "^6.16.0",
"react-router-dom": "^6.16.0",
"redux": "^4.2.1",
"redux-first-history": "^5.1.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"regenerator-runtime": "^0.14.0",
"superagent": "^8.1.2",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"babel-loader": "^9.1.3",
"babel-plugin-ramda": "^2.1.1",
"css-loader": "^6.8.1",
"eslint": "^8.51.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-import-resolver-webpack": "^0.13.7",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"pre-commit": "^1.2.2",
"sass": "^1.69.3",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3"
}
}