-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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": "horario-uc",
"version": "1.6.1",
"description": "Planificador de cursos de la UC.",
"main": "src/index.js",
"scripts": {
"build": "webpack --node-env production",
"build:dev": "webpack --mode development",
"build:digitalocean": "npm install --include=dev && npm run build:dev",
"dev": "webpack serve --mode development",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist",
"serve": "webpack serve --node-env production",
"lint": "eslint . --ext .js,.jsx",
"format": "eslint . --fix --ext .js,.jsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aurmeneta/HorarioUC.git"
},
"keywords": [
"uc",
"puc"
],
"author": "Andrés Urmeneta B. <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/aurmeneta/HorarioUC/issues"
},
"homepage": "http://aurmeneta.github.io/HorarioUC",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"dependencies": {
"@aurmeneta/buscacursos-uc": "^2.3.0",
"@babel/runtime": "^7.26.0",
"@rollbar/react": "^0.11.2",
"bootstrap": "^5.3.3",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollbar": "^2.26.4"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"dotenv": "^16.4.7",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"gh-pages": "^6.2.0",
"html-webpack-plugin": "^5.6.3",
"react-refresh": "^0.16.0",
"style-loader": "^4.0.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
}
}