-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 KB
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
{
"name": "leaonline-accounts",
"private": true,
"scripts": {
"start": "meteor run",
"test": "meteor test --once --driver-package meteortesting:mocha",
"test-app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"visualize": "meteor --production --extra-packages bundle-visualizer",
"lint:code": "npx @biomejs/biome check ./",
"lint:code-fix": "npx @biomejs/biome check --write ./",
"format:code": "npx @biomejs/biome format --write ./",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style-fix": "stylelint --fix \"**/*.scss\"",
"lint:markdown": "markdownlint \"**/*.md\" --config ./.markdownlint.json",
"lint:markdown-fix": "markdownlint --fix \"**/*.md\" --config ./.markdownlint.json"
},
"dependencies": {
"@babel/runtime": "^7.28.6",
"@fortawesome/fontawesome-free": "^5.15.4",
"@popperjs/core": "^2.11.8",
"bcrypt": "^6.0.0",
"bootstrap": "^5.3.8",
"jquery": "^3.7.1",
"meteor-node-stubs": "^1.2.27"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.tests.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^5.2.0",
"markdown-cli": "^1.6.0",
"markdownlint-cli": "^0.45.0",
"puppeteer": "^24.9.0",
"simpl-schema": "^1.13.1",
"sinon": "^20.0.0",
"stylelint": "^16.19.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^38.0.0"
},
"babel": {
"env": {
"COVERAGE": {
"plugins": ["istanbul"]
}
}
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"plugins": ["security"],
"extends": ["plugin:security/recommended"],
"rules": {
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": true
}
]
}
}
}