-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
{
"name": "reco-back-office",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"amazon-cognito-identity-js": "^6.3.7",
"antd": "^5.12.1",
"axios": "^1.6.2",
"chart.js": "^4.4.2",
"crypto-hash": "^3.0.0",
"d3-array": "^3.2.4",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"nexa-js-sentimotion-mapper": "git+ssh://git@github.com/timlac/nexa-js-sentimotion-mapper.git",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.20.1",
"react-router-dom": "^6.20.1",
"react-scripts": "5.0.1",
"recharts": "^2.12.6",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy:stage": "npm run build:stage && npm run s3-deploy:stage",
"deploy:prod": "npm run build:prod && npm run s3-deploy:prod",
"build:stage": "env-cmd -f .env.stage react-scripts build",
"build:prod": "env-cmd -f .env.prod react-scripts build",
"s3-deploy:stage": "aws s3 sync build/ s3://reco-backoffice-stage --delete",
"s3-deploy:prod": "aws s3 sync build/ s3://reco-backoffice-prod --delete"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"env-cmd": "^10.1.0",
"jest": "^29.7.0"
}
}