-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.99 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
{
"name": "acumulado-grilla-prueba-tecnica",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/LautaroJSON/acumulado-grilla-prueba-tecnica.git",
"author": "Lautaro Fernandez <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./dist",
"build": "npm run clean && webpack --config webpack.config.cjs",
"start": "npm run build && node dist/server.bundle.cjs",
"test": "jest --coverage"
},
"dependencies": {
"dotenv": "^16.4.5",
"express": "^4.21.1",
"node-fetch": "^2.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.14.0",
"@types/express": "4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.12",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webpack-hot-middleware": "^2.25.9",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"glob": "^11.0.0",
"globals": "^15.12.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.9.2",
"prettier": "^3.3.3",
"purgecss-webpack-plugin": "^6.0.0",
"style-loader": "^4.0.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-middleware": "^7.4.2",
"webpack-hot-middleware": "^2.26.1",
"webpack-node-externals": "^3.0.0"
}
}