-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.9 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
{
"name": "developer-file-generator",
"version": "0.0.0",
"description": "A website for generating a file with multiple parameters",
"private": true,
"scripts": {
"markdown": "markdownlint src/**/*.md .github/**/*.md CHANGELOG.md CODE_OF_CONDUCT.md CONTRIBUTING.md README.md -c .markdownlint.yml",
"html": "html-linter --config html-linter.json",
"javascript": "eslint frontend/javascript/*.js frontend/javascript/controllers/*.js frontend/javascript/generators/data/*.js frontend/javascript/utils/*.js start.js sync.js webpack.config.js tailwind.config.js postcss.config.js",
"css": "stylelint frontend/**/*.scss",
"build": "bundle exec bridgetown build",
"serve": "bundle exec bridgetown serve",
"webpack-build": "webpack --mode production",
"webpack-dev": "webpack --mode development -w",
"deploy": "yarn webpack-build && yarn build",
"sync": "node sync.js",
"start": "node start.js"
},
"homepage": "https://devgenerator.io",
"bugs": {
"url": "https://github.com/dev-generator/devgenerator.io/issues",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dev-generator/devgenerator.io"
},
"author": {
"name": "Christopher Pezza",
"email": "[email protected]"
},
"contributors": [
{
"name": "Christopher Pezza",
"email": "[email protected]",
"url": "https://chiefpansancolt.live"
}
],
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@fullhuman/postcss-purgecss": "^3.0.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"browser-sync": "^2.26.7",
"concurrently": "^5.2.0",
"css-loader": "^3.4.2",
"eslint": "^7.11.0",
"eslint-config-google": "^0.14.0",
"file-loader": "^6.0.0",
"html-linter": "^1.1.1",
"markdownlint": "^0.21.0",
"markdownlint-cli": "^0.24.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^4.0.4",
"sass-loader": "^8.0.2",
"stimulus": "^2.0.0",
"style-loader": "^1.1.3",
"stylelint": "^13.7.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-manifest-plugin": "^2.2.0"
},
"dependencies": {
"@tailwindcss/aspect-ratio": "^0.2.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.0.2",
"babel-plugin-prismjs": "^2.0.1",
"bridgetown-quick-search": "1.0.5",
"file-saver": "^2.0.2",
"heroicons": "^0.4.2",
"postcss": "^8.1.7",
"prismjs": "^1.22.0",
"tailwindcss": "^2.0.1"
}
}