-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
{
"name": "komento",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:embed": "nodemon -e ts --watch src/scripts --exec \"yarn build:embed:dev\"",
"build": "next build && next export",
"postbuild": "yarn build:embed:production",
"start": "npx http-server out -p 3000",
"build:embed:dev": "env-cmd -f .env.development --use-shell 'esbuild src/scripts/embed.ts --minify --bundle --format=iife --define:process.env.NEXT_PUBLIC_WEBSITE_URL=\\\"${NEXT_PUBLIC_WEBSITE_URL}\\\" --outfile=public/embed.js'",
"build:embed:production": "env-cmd -f .env.production --use-shell 'esbuild src/scripts/embed.ts --minify --bundle --format=iife --define:process.env.NEXT_PUBLIC_WEBSITE_URL=\\\"${NEXT_PUBLIC_WEBSITE_URL}\\\" --outfile=out/embed.js'"
},
"dependencies": {
"@chakra-ui/react": "^1.4.1",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"date-fns": "^2.19.0",
"emoji-mart": "^3.0.1",
"framer-motion": "^4",
"highlight.js": "^10.7.1",
"himalaya": "^1.1.0",
"imagemin-svgo": "^9.0.0",
"next": "10.0.4",
"next-compose-plugins": "^2.2.1",
"next-optimized-images": "^2.6.2",
"next-seo": "^4.23.0",
"pluralize": "^8.0.0",
"polished": "^4.1.1",
"raw-loader": "^4.0.2",
"rc-color-picker": "^1.2.6",
"react": "17.0.2",
"react-debounce-input": "^3.2.3",
"react-dom": "17.0.2",
"react-icons": "^4.2.0",
"react-markdown": "^5.0.3",
"remark-emoji": "^2.1.0",
"remark-gfm": "^1.0.0",
"simplebar-react": "^2.3.0",
"slugify": "^1.5.0",
"svg-sprite-loader": "^6.0.5",
"unstated-next": "^1.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"env-cmd": "^10.1.0",
"esbuild": "^0.10.2",
"nodemon": "^2.0.7",
"typescript": "^4.2.3"
}
}