-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 966 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 966 Bytes
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
{
"name": "rpn-bbcode",
"version": "0.0.1",
"repository": "TODO",
"author": "RpNation",
"license": "GPL-3.0-or-later",
"type": "module",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"prepare": "husky install",
"lint": "eslint"
},
"devDependencies": {
"@bbob/types": "^4.2.0",
"@discourse/lint-configs": "2.12.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.3",
"ember-template-lint": "7.0.4",
"eslint": "9.24.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "3.5.3",
"rollup": "^4.30.1",
"stylelint": "16.16.0"
},
"dependencies": {
"@bbob/core": "^4.2.0",
"@bbob/html": "^4.2.0",
"@bbob/preset": "^4.2.0",
"@bbob/preset-html5": "^4.2.0"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": ">=18.0.0"
}
}