-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 742 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 742 Bytes
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
{
"name": "compound-frequency-calculator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"export": "next export",
"deploy": "yarn run build && yarn run export && firebase deploy --only hosting"
},
"dependencies": {
"@geist-ui/react": "^2.1.5",
"@geist-ui/react-icons": "^1.0.1",
"firebase": "^8.6.7",
"next": "11.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-firebase-hooks": "^3.0.4",
"react-firebaseui": "^5.0.2",
"styled-components": "^5.3.0"
},
"devDependencies": {
"@types/react": "17.0.11",
"@types/styled-components": "^5.1.10",
"typescript": "4.3.2"
}
}