-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
67 lines (67 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
57
58
59
60
61
62
63
64
65
66
67
{
"name": "learning-hub-demo",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "rm -rf .next/ && cross-env NODE_ENV=production next build",
"start": "next start",
"test": "NODE_ENV=test next",
"test:build": "NODE_ENV=test next build",
"test:start": "NODE_ENV=test next start",
"test:dev": "NODE_ENV=test next dev",
"postinstall": "husky install",
"release": "standard-version"
},
"engines": {
"npm": ">= 7",
"yarn": ">= 1.17.3",
"node": ">= 12.5.0"
},
"dependencies": {
"@codemirror/basic-setup": "^0.18.0",
"@codemirror/lang-javascript": "^0.18.0",
"@codemirror/lang-markdown": "^0.18.1",
"@codemirror/theme-one-dark": "^0.18.0",
"@codemirror/view": "^0.18.7",
"@heroicons/react": "^1.0.1",
"axios": "^0.21.1",
"gray-matter": "^4.0.3",
"highlight.js": "^10.7.2",
"moment": "^2.29.1",
"next": "^11.0.2-canary.4",
"react": "17.0.2",
"react-calendar-heatmap": "^1.8.1",
"react-cropper": "^2.1.8",
"react-dom": "17.0.2",
"react-quill": "^1.3.5",
"react-reveal": "^1.2.2",
"react-select": "^5.2.2",
"react-share": "^4.4.0",
"react-slick": "^0.28.1",
"react-toastify": "^7.0.4",
"react-youtube": "^7.14.0",
"reactjs-popup": "^2.0.4",
"remark": "^13.0.0",
"remark-highlight.js": "^6.0.0",
"remark-html": "^13.0.1",
"sass": "^1.32.12",
"slick-carousel": "^1.8.1",
"socket.io-client": "^4.1.3",
"standard-version": "^9.3.2",
"styled-components": "^5.3.0",
"universal-cookie": "^4.0.4"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"autoprefixer": "^10.4.0",
"cross-env": "^7.0.3",
"fast-glob": "^3.2.5",
"husky": "^7.0.2",
"postcss": "^8.2.10",
"prettier": "^2.5.1",
"tailwindcss": "^2.2.19",
"webpack": "^5.33.2"
}
}