-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.59 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "octa-react-portal",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fullpage/react-fullpage": "^0.1.17",
"@iconify-icons/file-icons": "^1.1.3",
"@iconify-icons/simple-icons": "^1.1.12",
"@iconify/icons-fa-brands": "^1.0.9",
"@iconify/icons-logos": "^1.0.9",
"@iconify/icons-mdi": "^1.0.41",
"@iconify/icons-simple-icons": "^1.0.18",
"@iconify/react": "^1.1.1",
"@material-ui/core": "^4.8.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/lab": "^4.0.0-alpha.36",
"@mdi/js": "^4.7.95",
"@mdi/react": "^1.2.1",
"aphrodite": "^2.4.0",
"axios": "^0.21.1",
"change-case": "^3.1.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.6.1",
"env-cmd": "^10.0.1",
"faker": "^4.1.0",
"firebase": "^7.6.1",
"html5-device-mockups": "^3.2.1",
"node-sass": "^4.13.0",
"react": "^16.12.0",
"react-animations": "^1.0.0",
"react-dom": "^16.12.0",
"react-image-lightbox": "^5.1.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-router-redux": "^4.0.8",
"react-scripts": "^3.4.1",
"redux-actions": "^2.6.5",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"typeface-roboto": "^0.0.75"
},
"scripts": {
"lint": "eslint src",
"start": "react-scripts start",
"build": "react-scripts build",
"build-dev": "env-cmd -f .env.development npm run build",
"build-prod": "env-cmd -f .env.production npm run build",
"deploy-firebase-dev": "npm run build-dev && firebase deploy -P default --only hosting:develop",
"deploy-firebase-prod": "npm run build-prod && firebase deploy -P prod --only hosting:develop",
"test": "react-scripts test",
"eject": "react-scripts eject",
"serve": "serve -s build"
},
"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": {
"css-loader": "^3.4.0",
"husky": "^3.1.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"style-loader": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"lint-staged": {
"linters": {
"*.{js}": [
"yarn lint --fix",
"git add"
]
},
"ignore": [
"./public",
"./environment",
"./node_modules",
"./dist",
"./coverage"
]
}
}