generated from YagoGG/express-react-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
69 lines (69 loc) · 2.32 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
{
"name": "taquillas",
"version": "0.0.1",
"description": "Locker renting and management platform.",
"main": "src/server/server.js",
"scripts": {
"build": "webpack --mode production",
"start": "yarn run build && node src/server/server.js",
"migrate": "sequelize db:migrate",
"seed": "sequelize db:seed:all",
"server": "nodemon --ignore dist/ --ignore src/client",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"dev": "NODE_ENV=development concurrently --kill-others --raw --default-input-target 1 'yarn run client' 'yarn run server'",
"lint-css": "stylelint \"**/*.css\"",
"lint-js": "eslint . --ext .js,.jsx --ignore-pattern dist/ --ignore-pattern node_modules/",
"test": "yarn run lint-js && yarn run lint-css"
},
"repository": "https://github.com/DAT-ETSIT/taquillas",
"author": "Delegación de Alumnos de Telecomunicación",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.1",
"sequelize-cli": "^6.6.0",
"style-loader": "^3.3.1",
"stylelint": "^15.1.0",
"stylelint-config-standard": "^30.0.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"@mui/styles": "^5.11.9",
"connect-session-sequelize": "^7.1.5",
"express": "^4.16.4",
"express-session": "^1.17.1",
"got": "^12.5.3",
"material-react-table": "^1.8.0",
"morgan": "^1.9.1",
"mysql2": "^3.1.2",
"promise-mysql": "^5.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.1",
"redux": "^4.0.5",
"sequelize": "^6.28.0",
"xml2js": "^0.4.23",
"yarn": "^1.22.18"
}
}