-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
137 lines (137 loc) · 4 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "mern-boilerplate",
"version": "1.0.0",
"description": "A full MERN stack boilerplate",
"main": "server/index.js",
"scripts": {
"build": "./scripts/build-prd.sh",
"build:prd": "./scripts/build-prd.sh",
"build:dev": "./scripts/build-dev.sh",
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "nodemon server/index.js",
"start:client": "./scripts/watch-dev.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "./scripts/test.sh",
"test:verbose": "./scripts/test-verbose.sh",
"test:coverage": "./scripts/test-coverage.sh",
"test:watch-client": "./scripts/test-watch-client.sh",
"test:watch-server": "./scripts/test-watch-server.sh"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/djizco/mern-boilerplate.git"
},
"author": {
"name": "Federico Rojas",
"email": "[email protected]",
"url": "https://github.com/djizco"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/djizco/mern-boilerplate/issues"
},
"keywords": [
"react",
"redux",
"webpack",
"express",
"passport",
"material-ui",
"bulma",
"fontawesome",
"ramda",
"eslint",
"jest"
],
"homepage": "https://github.com/djizco/mern-boilerplate#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.17",
"@typegoose/auto-increment": "^3.6.1",
"animate.css": "^4.1.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"bulma": "0.9.4",
"classnames": "^2.3.2",
"connect-mongo": "^5.1.0",
"core-js": "^3.33.2",
"date-fns": "^2.30.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"history": "^5.3.0",
"immutability-helper": "^3.1.1",
"mongoose": "^7.6.4",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"prop-types": "^15.8.1",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-bulma-companion": "0.5.6",
"react-dom": "^18.2.0",
"react-notifications-component": "^4.0.1",
"react-redux": "^8.1.3",
"react-router": "^6.18.0",
"react-router-dom": "^6.18.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",
"tss-react": "^4.9.3",
"uuid": "^9.0.1",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.9.1",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.0",
"@testing-library/user-event": "^14.5.1",
"babel-loader": "^9.1.3",
"babel-plugin-ramda": "^2.1.1",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"eslint": "^8.53.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"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",
"nodemon": "^3.0.1",
"pre-commit": "^1.2.2",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"supertest": "^6.3.3"
}
}