forked from yougotwill/session-website
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.89 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": "session-website",
"version": "0.1.0",
"license": "GPL-3.0-only",
"scripts": {
"dev": "NEXT_PUBLIC_SITE_ENV=development NODE_ENV=development NODE_OPTIONS='--inspect' next dev",
"build": "NEXT_PUBLIC_SITE_ENV=production NODE_ENV=production next build",
"build:staging": "NEXT_PUBLIC_SITE_ENV=development NODE_ENV=production next build",
"start": "NEXT_PUBLIC_SITE_ENV=production NODE_ENV=production next start --hostname 127.0.0.1",
"start:staging": "NEXT_PUBLIC_SITE_ENV=development NODE_ENV=production next start --hostname 127.0.0.1",
"lint": "next lint"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^15.3.5",
"@contentful/rich-text-plain-text-renderer": "^15.3.5",
"@contentful/rich-text-react-renderer": "^15.3.5",
"@newhighsco/next-plugin-svgr": "^3.0.28",
"@silvermine/videojs-quality-selector": "^1.2.5",
"base-64": "^1.0.0",
"classnames": "^2.3.1",
"contentful": "^8.4.2",
"date-fns": "^2.23.0",
"direction": "^2.0.1",
"feed": "^4.2.2",
"himalaya": "^1.1.0",
"next": "11.1.4",
"next-compose-plugins": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-qrcode-logo": "^3.0.0",
"react-use": "^17.2.4",
"rimraf": "^3.0.2",
"sharp": "^0.28.3",
"video.js": "^7.14.3",
"xss": "^1.0.9"
},
"devDependencies": {
"@axe-core/react": "^4.2.2",
"@contentful/rich-text-types": "^15.3.5",
"@tailwindcss/forms": "^0.3.3",
"@types/base-64": "^1.0.0",
"@types/react": "^17.0.13",
"@types/rimraf": "^3.0.2",
"@types/video.js": "^7.3.26",
"autoprefixer": "^10.2.5",
"contentful-cli": "^1.8.17",
"cssnano": "^4.1.11",
"eslint": "7.32.0",
"eslint-config-next": "^11.1.2",
"postcss": "^8.2.13",
"prettier": "^2.3.2",
"tailwindcss": "^2.2.15",
"tailwindcss-selection-variant": "^0.1.0",
"typescript": "^4.3.5"
}
}