-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
105 lines (105 loc) · 4.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@opensfcc/sfcc-docs",
"version": "0.7.0",
"description": "Unofficial community edition of the Salesforce Commerce Cloud developer documentation.",
"license": "MIT",
"author": "Peter Schmalfeldt <me@peterschmalfeldt.com>",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "NODE_ENV=development npm run -s clean && next dev",
"build": "NODE_ENV=production npm run -s clean && next build",
"postbuild": "next-sitemap --config next-sitemap.config.mjs",
"start": "next start",
"lint": "next lint",
"clean": "rm -fr .cache/*.json && rm -fr dist && rm -fr .next",
"cli:init": "DEBUG=sfcc-docs:* bin/cli.mjs init --verbose",
"cli:prep": "DEBUG=sfcc-docs:* bin/cli.mjs prep --verbose",
"cli:update-links": "DEBUG=sfcc-docs:* bin/cli.mjs update-links --verbose",
"cli:convert": "DEBUG=sfcc-docs:* bin/cli.mjs convert --verbose",
"cli:build-nav": "DEBUG=sfcc-docs:* bin/cli.mjs build-nav --verbose",
"cli:diff": "DEBUG=sfcc-docs:* bin/cli.mjs diff --verbose",
"cli:update-site": "DEBUG=sfcc-docs:* bin/cli.mjs update-site --verbose",
"cli:clean": "rm -fr .b2c-dev-doc && rm -fr src/data && rm -fr dist && rm -fr .next",
"cli:all": "npm run -s cli:clean && npm run -s cli:init && npm run -s cli:update",
"cli:update": "npm run -s cli:prep && npm run -s cli:update-links && npm run -s cli:convert && npm run -s cli:build-nav && npm run -s cli:diff && npm run -s cli:update-site",
"server:clean:logs": "NODE_NO_WARNINGS=1 forever cleanlogs",
"server:start:loc": "NODE_NO_WARNINGS=1 forever start ./forever/loc.json",
"server:start:dev": "NODE_NO_WARNINGS=1 forever start ./forever/dev.json",
"server:start:prd": "NODE_NO_WARNINGS=1 forever start ./forever/prd.json",
"server:stop:loc": "NODE_NO_WARNINGS=1 forever stop local",
"server:stop:dev": "NODE_NO_WARNINGS=1 forever stop development",
"server:stop:prd": "NODE_NO_WARNINGS=1 forever stop prd",
"server:restart:loc": "NODE_NO_WARNINGS=1 forever restart local",
"server:restart:dev": "NODE_NO_WARNINGS=1 forever restart development",
"server:restart:prd": "NODE_NO_WARNINGS=1 forever restart production"
},
"engines": {
"node": ">= 18.17.0",
"npm": ">= 9.6.7"
},
"main": "./bin/cli.mjs",
"bin": {
"sfcc-docs": "./bin/cli.mjs"
},
"browserslist": "defaults, not ie <= 11",
"repository": {
"type": "git",
"url": "git+https://github.com/opensfcc/sfcc-docs.git"
},
"bugs": {
"url": "https://github.com/opensfcc/sfcc-docs/issues"
},
"homepage": "https://github.com/opensfcc/sfcc-docs#readme",
"dependencies": {
"@algolia/autocomplete-core": "^1.9.2",
"@algolia/autocomplete-plugin-recent-searches": "^1.11.0",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.18",
"@markdoc/markdoc": "0.1.7",
"@markdoc/next.js": "0.1.6",
"@sindresorhus/slugify": "^2.1.0",
"@tailwindcss/typography": "^0.5.7",
"autoprefixer": "^10.4.12",
"clsx": "^1.2.1",
"fast-glob": "^3.2.12",
"flexsearch": "^0.7.31",
"focus-visible": "^5.2.0",
"md5": "^2.3.0",
"next": "13.4.2",
"next-pwa": "^5.6.0",
"postcss-focus-visible": "^6.0.4",
"postcss-import": "^14.1.0",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-highlight-words": "^0.20.0",
"simple-functional-loader": "^1.2.1",
"tailwindcss": "^3.3.0"
},
"devDependencies": {
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"debug": "^4.3.4",
"dir-compare": "^4.2.0",
"dotenv": "^16.3.1",
"eslint": "8.26.0",
"eslint-config-next": "13.0.2",
"forever": "^4.0.3",
"glob": "^10.3.3",
"html-minifier": "^4.0.0",
"html-to-text": "^9.0.5",
"markdownlint": "^0.30.0",
"next-sitemap": "^4.2.3",
"node-html-parser": "^6.1.5",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.6",
"react-diff-view": "^3.1.0",
"serve": "^14.2.1",
"sharp": "^0.32.5",
"turndown": "^7.1.2",
"turndown-plugin-gfm": "^1.0.2",
"yargs": "^17.7.2"
}
}