-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.32 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": "otulea",
"private": true,
"scripts": {
"start": "meteor run",
"test:once": "meteor test --once --driver-package meteortesting:mocha",
"test:app": "TEST_WATCH=1 meteor test --full-app --driver-package meteortesting:mocha",
"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",
"build:notes-tree": "markdown-notes-tree && npm run lint:markdown-fix",
"visualize": "meteor --production --extra-packages bundle-visualizer,dynamic-import --settings=settings.json"
},
"dependencies": {
"@babel/runtime": "^7.15.4",
"@fortawesome/fontawesome-free": "^5.15.4",
"bcrypt": "^5.0.1",
"bootstrap": "^4.6.0",
"debug": "^4.3.2",
"detect-os": "^1.2.1",
"easy-speech": "^2.3.1",
"helmet": "^4.6.0",
"jquery": "^3.6.0",
"lozad": "^1.16.0",
"marked": "^5.1.0",
"meteor-node-stubs": "^1.1.0",
"popper.js": "^1.16.1",
"print-js": "^1.6.0",
"showdown": "^2.0.0",
"simpl-schema": "^1.12.0",
"ua-parser-js": "0.7.28"
},
"meteor": {
"mainModule": {
"client": "client/main.js",
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.15.4",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.4",
"eslint-plugin-security": "^1.4.0",
"markdownlint-cli": "^0.31.1",
"puppeteer": "19.3.0",
"sinon": "^11.1.2",
"snazzy": "^9.0.0",
"standardx": "^7.0.0",
"stylelint": "^13.13.1",
"stylelint-config-sass-guidelines": "^8.0.0",
"stylelint-config-standard": "^22.0.0"
},
"babel": {
"env": {
"COVERAGE": {
"plugins": [
"istanbul"
]
}
}
},
"eslintConfig": {
"parser": "@babel/eslint-parser",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": true
},
"rules": {
"brace-style": [
"error",
"stroustrup",
{
"allowSingleLine": true
}
],
"import/no-duplicates": 0
}
}
}