-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "root",
"version": "1.0.0",
"browserslist": [
">0.25%",
"not dead"
],
"keywords": [
"nextjs",
"novela",
"mdx",
"typescript",
"react"
],
"scripts": {
"preinstall": "npx meta git update",
"clean": "rimraf yarn.lock && rimraf ./**/.next && rimraf ./**/out && rimraf {*/,}node_modules",
"dev": "BROWSERSLIST_IGNORE_OLD_DATA=false next dev",
"dev:watch": "next-remote-watch ./content",
"build": "NODE_ENV=production BROWSERSLIST_IGNORE_OLD_DATA=false next build",
"export": "NODE_ENV=production NEXT_ENV=export BROWSERSLIST_IGNORE_OLD_DATA=false next build && next export",
"start": "NODE_ENV=production next start",
"postbuild": "NODE_ENV=production next-sitemap --config .config/next-sitemap.js"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.1.2",
"@sync-labs/eslint-config": "^2.2.5",
"babel-plugin-macros": "^3.0.1",
"eslint": "^7.17.0",
"js-yaml": "^3.14.1",
"next": "latest",
"next-compose-plugins": "^2.2.1",
"next-image-meta-loader": "^2.0.0",
"next-favicon-loader": "2.0.0",
"next-svg-inline-loader": "^2.0.1",
"next-lib-content": "^2.0.0",
"next-theme-novela": "^2.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sharp": "^0.27.1",
"typescript": "^4.1.3",
"webpack": "^5.19.0"
},
"resolutions": {
"js-yaml": "3.14.1",
"sharp": "0.27.1",
"webpack": "5.19.0"
},
"private": true,
"workspaces": [
"next-favicon-loader",
"next-image-meta-loader",
"next-lib-content",
"next-theme-novela"
],
"license": "MIT"
}