-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.16 KB
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
{
"name": "exifilixir",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:export": "next build && next export",
"start": "next start",
"lint": "next lint",
"functions:build": "cd functions && npm run build",
"functions:serve": "cd functions && npm run build && cd .. && firebase emulators:start --only functions",
"functions:deploy": "cd functions && npm run build && cd .. && firebase deploy --only functions",
"deploy:hosting": "npm run build && firebase deploy --only hosting",
"deploy:all": "npm run build && cd functions && npm run build && cd .. && firebase deploy",
"test:production": "npm run build && npm start"
},
"dependencies": {
"next": "^14.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"antd": "^5.12.0",
"exiftool-vendored": "^35.2.0",
"sharp": "^0.33.0",
"@ant-design/icons": "^5.2.6"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"typescript": "^5.3.0",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.0",
"next-pwa": "^5.6.0"
}
}