-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "uottahack-home",
"version": "0.1.0",
"private": true,
"dependencies": {
"@mobiscroll/react-lite": "^4.10.9",
"bootstrap": "^5.2.2",
"boxicons": "^2.1.4",
"express": "*",
"react": "^16.4.1",
"react-bootstrap": "^2.5.0",
"react-bootstrap-buttons": "^1.0.0",
"react-dom": "^16.4.1",
"react-fb-image-grid": "^0.1.5",
"react-icons": "^4.4.0",
"react-konami-code": "^1.2.0",
"react-scripts": "^5.0.1",
"react-scroll": "^1.8.7",
"react-youtube-embed": "^1.0.3",
"semantic-ui-react": "^0.82.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}