-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
53 lines (53 loc) · 1.72 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
{
"name": "platform-os-documentation",
"version": "3.0.0",
"description": "Documentation for platformOS",
"private": true,
"repository": "mdyd-dev/platformos-documentation",
"engines": {
"node": ">=12"
},
"scripts": {
"watch:webpack": "npx webpack-cli -w --node-env development",
"sync": "pos-cli sync -o -l dev",
"start": "npx concurrently npm:sync npm:watch:webpack",
"prebuild": "npx rimraf app/assets/*.{js,css}",
"build": "npx webpack-cli --node-env production",
"postbuild": "npx concurrently \"npm:prepare:*\"",
"build:graphql": "./scripts/generate-graphql.sh",
"prepare:inlineCSS": "cp app/assets/app.css app/views/partials/css/source/app.css",
"prepare:inlineJS": "cp app/assets/app.js app/views/partials/js/source/app.js",
"deploy": "npm run build && pos-cli deploy",
"test": "npx codeceptjs run"
},
"graphdoc": {
"output": "./modules/graphql/public/views/pages/api-reference/graphql",
"baseUrl": "./"
},
"author": "platformOS",
"homepage": "https://documentation.platformos.com",
"browserslist": "cover 90%, not ie 11",
"devDependencies": {
"autoprefixer": "^10.4.4",
"chokidar-cli": "^3.0.0",
"css-loader": "6.7.1",
"esbuild-loader": "^2.18.0",
"mini-css-extract-plugin": "2.6.0",
"pkg-dir": "^4.2.0",
"postcss": "8.4.31",
"postcss-import": "^14.1.0",
"postcss-loader": "6.2.1",
"tailwindcss": "^3.0.23",
"webpack": "5.94.0",
"webpack-cli": "4.9.2",
"webpack-require-from": "1.8.6"
},
"dependencies": {
"@platformos/graphql-docs-markdown": "^1.6.3",
"docsearch.js": "^2.6.3",
"instantsearch.js": "^4.46.2",
"algoliasearch": "^4.14.2",
"graphql": "^16.3.0",
"prismjs": "1.27.0"
}
}