-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 4.01 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
106
107
108
109
110
111
112
113
114
115
{
"name": "yassb-web",
"version": "1.4.3",
"description": "YASSB (Yet Another Static Site Builder) processes HTML, (S)CSS, JavaScript/TypeScript, JSX/TSX, JSON, MarkDown and many other files and combines them into beautiful static websites",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"licenses": "generate-license-file --input package.json --output licenses.txt",
"build-tools": "set NODE_OPTIONS=--openssl-legacy-provider && webpack --config webpack.yassb-tools.config.ts --progress",
"build-index": "set NODE_OPTIONS=--openssl-legacy-provider && webpack --config webpack.yassb.config.ts --progress",
"build-yassb": "tsc && npm run build-index && npm run build-tools",
"copy-pkg-files": "ts-node npm-package-files-copier.class.ts",
"testPublish": "cd bundle && npm pack",
"publishToNpm": "cd bundle && npm publish",
"deploy": "npm run licenses && cglg --action=newRelease && npm run build-yassb && cglg --action=closeRelease && npm run do-no-run-this-deploy-directly",
"do-no-run-this-deploy-directly": "npm run copy-pkg-files && npm run publishToNpm",
"docs": "typedoc",
"build-landing": "node bundle/index.js build",
"watch-landing": "node bundle/index.js watch",
"serve-landing": "node bundle/index.js serve",
"build-docs-landing": "npm run docs && npm run build-landing",
"build-yassb-landing": "npm run build-yassb && npm run build-landing",
"test-new": "node bundle/index.js new testProject",
"build-test": "set NODE_APP_INSTANCE=2&& node bundle/index.js build",
"serve-test": "cd test-project/public && http-server",
"deploy-landing": "npm run build-docs-landing && cd landing/YASSB-FOSS.github.io && npm run deploy"
},
"main": "index.js",
"bin": {
"yassb": "./bin.js"
},
"homepage": "https://yassb-foss.github.io/",
"repository": {
"type": "git",
"url": "https://github.com/YASSB-FOSS/yassb.git"
},
"keywords": [
"static website",
"html",
"static",
"website",
"website builder",
"website generator",
"serverless"
],
"dependencies": {
"amd-loader": "^0.0.8",
"cheerio": "^1.0.0-rc.3",
"config": "^3.3.3",
"create-html-element": "^3.0.0",
"express": "^4.17.1",
"fs-extra": "^7.0.1",
"gray-matter": "^4.0.2",
"html-minifier": "^4.0.0",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"postcss-cli": "^8.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sass": "^1.55.0",
"showdown": "^1.9.1",
"string-similarity": "^4.0.3",
"thread-loader": "^3.0.1",
"ts-loader": "^8.0.11",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"uninstall": "0.0.0",
"watch": "^1.0.2",
"webpack": "^5.68.0",
"ws": "^7.4.1",
"xml-sitemap": "^0.3.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.13",
"@types/clean-css": "^4.2.5",
"@types/config": "^0.0.37",
"@types/fs-extra": "^5.1.0",
"@types/html-minifier": "^3.5.3",
"@types/lodash": "^4.14.165",
"@types/node": "~11.13.5",
"@types/showdown": "^1.9.3",
"@types/string-similarity": "^4.0.0",
"@types/watch": "^1.0.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"autoprefixer": "^10.0.4",
"clean-css": "^4.2.3",
"done-webpack-plugin": "^1.0.3",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.8",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-unicorn": "^23.0.0",
"generate-license-file": "^1.1.0",
"html-loader": "^1.3.2",
"http-server": "^0.12.3",
"postcss": "^8.1.14",
"precss": "^4.0.0",
"raw-loader": "^4.0.2",
"tailwindcss": "^2.0.3",
"tsconfig-paths": "^3.11.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tscpaths": "^0.0.9",
"tspath": "^1.3.7",
"typedoc": "^0.23.15",
"webpack-cli": "^4.9.2"
},
"author": "ilDon",
"license": "MIT"
}