-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.07 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
{
"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": "standardx -v | snazzy",
"lint:code-fix": "standardx --fix -v | snazzy",
"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.24.8",
"@fortawesome/fontawesome-free": "^5.15.4",
"@popperjs/core": "^2.11.8",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.3",
"jquery": "^3.7.1",
"meteor-node-stubs": "^1.2.9"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.tests.js"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.8",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.6",
"eslint-plugin-security": "^1.5.0",
"markdown-cli": "^1.6.0",
"markdownlint-cli": "^0.39.0",
"puppeteer": "^10.4.0",
"sinon": "^17.0.1",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"standardx": "^7.0.0",
"stylelint": "^15.11.0",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-config-standard": "^36.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
}
]
}
}
}