-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.19 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
{
"name": "ttfl-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"all": "npm-run-all commit:build:deploy invalidate",
"build:deploy": "npm-run-all build deploy",
"build": "react-scripts build",
"commit:build:deploy": "npm-run-all commit build deploy",
"commit": "git push; git checkout main; git merge dev; git push; git checkout dev",
"clean:yarn": "rimraf node_modules && rm yarn.lock || true && yarn cache clean && yarn install",
"deploy": "aws s3 sync build/ s3://ttlf-website --profile developer",
"eject": "react-scripts eject",
"invalidate": "aws cloudfront create-invalidation --distribution-id $(echo $TTLF_S3_BUCKET) --paths '/*' --profile $(echo $TTLF_EB_PROFILE)",
"lint": "eslint --fix . --ext .tsx,.ts ./src",
"start": "react-scripts start",
"test": "react-scripts test"
},
"dependencies": {
"axios": "^0.21.1",
"i18next": "^19.8.2",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"node-sass": "^4.14.1",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-app-polyfill": "^2.0.0",
"react-dom": "^16.13.1",
"react-i18next": "^11.7.3",
"react-icons": "^3.11.0",
"react-player": "^2.6.2",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"react-toastify": "^6.1.0",
"react-tooltip": "^4.2.10",
"socket.io-client": "^3.1.0",
"typescript": "^4.0.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.13",
"@types/lodash": "^4.14.162",
"@types/node": "^14.10.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/react-toastify": "^4.1.0",
"@types/react-tooltip": "^4.2.4",
"airbnb": "0.0.2",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"npm-run-all": "^4.1.5"
}
}