-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.54 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
{
"name": "leaonline-content",
"private": true,
"version": "1.0.1",
"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 --verbose | snazzy",
"lint:code-fix": "standardx --fix --verbose | snazzy"
},
"dependencies": {
"@babel/runtime": "^7.14.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"file-type": "^16.5.4",
"meteor-node-stubs": "^1.1.0",
"mime-types": "^2.1.34",
"njwt": "^1.2.0",
"simpl-schema": "^1.12.0"
},
"meteor": {
"mainModule": {
"server": "server/main.js"
},
"testModule": "tests/main.js"
},
"devDependencies": {
"@babel/core": "^7.22.8",
"@babel/eslint-parser": "^7.22.7",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^4.3.4",
"eslint-plugin-security": "^1.4.0",
"sinon": "^10.0.0",
"snazzy": "^9.0.0",
"standardx": "^7.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"
]
}
}
}