-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "thisweeksplays.com",
"version": "1.0.0",
"description": " ",
"main": "index.js",
"scripts": {
"t": "tsc -b",
"dev": "tsc -b && next dev",
"build": "tsc -b && next build",
"start": "tsc -b && next start",
"lint": "eslint ./",
"vercel:env:push": "bash scripts/env.sh .env.production production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdotholla/twp2.git"
},
"author": "Kiel Byrne (https://kielbyrne.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tdotholla/twp2/issues"
},
"homepage": "https://github.com/tdotholla/twp2#readme",
"dependencies": {
"@babel/eslint-parser": "^7.13.14",
"@chakra-ui/icons": "^1.0.5",
"@chakra-ui/react": "^1.3.3",
"@chakra-ui/system": "^1.3.1",
"@emotion/react": "^11.1.5",
"@emotion/styled": "^11.1.5",
"alphavantage": "^2.2.0",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"chakra-ui-autocomplete": "^1.2.6",
"date-fns": "^2.21.1",
"dotenv": "^8.2.0",
"formik": "^2.2.6",
"framer-motion": "^3.3.0",
"mongodb": "^3.6.3",
"nanoid": "^3.1.18",
"next": "^10.0.3",
"next-auth": "^3.13.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"swr": "^0.3.9",
"vercel": "^21.3.3",
"yahoo-finance": "^0.3.7",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/mongodb": "^3.6.7",
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"eslint": "^7.14.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"typescript": "4.0"
},
"peerOptionalDependencies": {
"mongodb": "^3.6.3"
}
}