This repository has been archived by the owner on Nov 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "codename-locale",
"version": "1.0.0",
"description": "",
"main": "dist/server/index.js",
"engines": {
"node": "10"
},
"scripts": {
"dev:client": "next src/client",
"dev:server": "babel src/server --out-dir dist/server --source-maps --watch",
"dev": "npm run dev:client & npm run dev:server",
"build:client": "next build src/client",
"build:server": "babel src/server --out-dir dist/server --source-maps",
"build": "npm run build:client && npm run build:server",
"preserve": "npm run build",
"serve": "cross-env NODE_ENV=production firebase serve --only functions,hosting",
"predeploy": "rimraf dist/ && npm run build",
"deploy": "cross-env NODE_ENV=production firebase deploy --only functions,hosting"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"algoliasearch": "^4.8.6",
"antd": "^4.7.2",
"cors": "^2.8.5",
"emotion-theming": "^10.0.27",
"firebase-admin": "^8.13.0",
"firebase-functions": "^3.5.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.3.1",
"next-instantsearch": "^0.3.15",
"node-fetch": "^2.6.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-instantsearch-dom": "^6.10.3",
"react-markdown": "^4.3.1",
"swr": "^0.1.18",
"tailwindcss": "^1.9.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"typescript": "^3.9.9"
}
}