-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1001 Bytes
/
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
{
"name": "api-service",
"private": true,
"scripts": {
"start": "meteor run",
"lint": "node_modules/eslint/bin/eslint.js .",
"test": "meteor test --driver-package=meteortesting:mocha --full-app --raw-logs"
},
"eslintConfig": {
"plugins": [
"security"
],
"extends": [
"@meteorjs/eslint-config-meteor",
"plugin:security/recommended"
]
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.51",
"body-parser": "^1.18.3",
"debug": "^3.1.0",
"meteor-node-stubs": "^0.4.1"
},
"devDependencies": {
"@meteorjs/eslint-config-meteor": "^1.0.5",
"babel-eslint": "^8.2.6",
"chai": "^4.1.2",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-meteor": "^5.0.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-security": "^1.4.0",
"faker": "^4.1.0"
}
}