-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.2 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
{
"name": "@anyvent-org/front3nd",
"version": "1.0.5",
"description": "Various frontend related fragments used across anyvent.org projects",
"engines": {
"node": ">=18"
},
"main": "index.js",
"oclif": {
"commands": "./src/commands",
"bin": "front3nd",
"plugins": [
"@oclif/plugin-help"
]
},
"bin": {
"front3nd": "./bin/run"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint .",
"start": "cd test && webpack serve --config webpack.config.js --mode development",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "cd test && webpack --config webpack.config.js --mode production",
"version": "oclif-dev readme && git add README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anyvent-org/front3nd.git"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/lib"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"frontend",
"webpack",
"scss",
"toolbox"
],
"author": "Matthias Rohmer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/anyvent-org/front3nd/issues"
},
"homepage": "https://github.com/anyvent-org/front3nd#readme",
"devDependencies": {
"@oclif/dev-cli": "1.26.10"
},
"dependencies": {
"@oclif/command": "1.8.21",
"@oclif/config": "1.18.6",
"@oclif/plugin-help": "5.2.0",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"eslint": "8.32.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"filemanager-webpack-plugin": "8.0.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"mini-css-extract-plugin": "2.7.2",
"mini-svg-data-uri": "1.4.4",
"oclif": "3.6.0",
"pkg-dir": "7.0.0",
"prettier": "2.8.3",
"sass": "^1.57.1",
"sass-loader": "13.2.0",
"style-loader": "3.3.1",
"svg-spritemap-webpack-plugin": "4.5.0",
"svgo": "3.0.2",
"webpack": "5.75.0",
"webpack-build-notifier": "2.3.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
}
}