-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "netflix-clone",
"description": "a netflix clone using next.js and firebase",
"private": true,
"version": "1.0.1",
"author": {
"name": "Chan Alston",
"email": "[email protected]",
"url": "https://www.chanalston.com"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"build:local": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"emulators": "firebase emulators:start --import ./emulators",
"emulators:auth": "firebase emulators:start --only auth",
"emulators:db": "firebase emulators:start --only firestore",
"emulators:storage": "firebase emulators:start --only storage"
},
"dependencies": {
"@chan_alston/image": "^1.0.5",
"@tanstack/react-query": "^4.36.1",
"crypto-js": "^4.2.0",
"firebase": "^10.11.1",
"framer-motion": "^10.18.0",
"next": "^13.5.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.32.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.6",
"@tanstack/react-query-devtools": "^4.36.1",
"@types/crypto-js": "^4.2.2",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^13.5.6",
"sass": "^1.76.0",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/AlstonChan/Netflix-clone"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}