-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.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": "@dendronhq/nextjs-template",
"version": "0.116.3",
"license": "Apache-2.0",
"private": true,
"repository": {
"type": "git",
"url": "ssh://[email protected]/dendronhq/dendron.git",
"directory": "packages/nextjs-template"
},
"scripts": {
"dev": "next dev",
"build": "npm run copy:robotstxt && next build",
"buildCI": "echo nop",
"start": "next start",
"lint": "next lint",
"export": "npm run build && next export",
"build:sitemap:ts": "tsc -p tsconfig.sitemap.json && mv dist/scripts/sitemap.js . ",
"build:sitemap": "next-sitemap --config sitemap.js",
"clean": "yarn rimraf public data out",
"copy:robotstxt": "npx cpx assets/robots.txt public/",
"rimraf": "npx rimraf",
"test": "NODE_ENV=test playwright test",
"test:skipbuild": "SKIP_BUILD=1 yarn test"
},
"dependencies": {
"@dendronhq/common-all": "^0.116.3",
"@dendronhq/common-frontend": "^0.116.3",
"@giscus/react": "^2.2.0",
"antd": "^4.15.5",
"fs-extra": "^10.0.0",
"html-react-parser": "^1.3.0",
"import-fresh": "^3.3.0",
"lodash": "^4.17.21",
"luxon": "^1.25.0",
"next": "^12.3.2",
"next-seo": "^4.27.0",
"next-sitemap": "1.8.11",
"react": "^17.0.2",
"react-css-theme-switcher": "^0.3.0",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-ga4": "^1.0.6",
"react-redux": "^7.2.3",
"sass": "^1.41.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^11.1.2",
"@playwright/test": "^1.26.0",
"@types/fs-extra": "^9.0.12",
"@types/lodash": "^4.14.186",
"@types/luxon": "^2.3.1",
"@types/react": "17.0.38",
"cpx": "^1.5.0",
"eslint": "^7.32.0",
"eslint-config-next": "^12.2.6",
"har-validator": "^5.1.5",
"typescript": "^4.4.3"
},
"resolutions": {
"@types/react": "17.0.38"
},
"overrides": {
"trim": "0.0.3",
"@types/react": "17.0.38"
}
}