-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 961 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 961 Bytes
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
{
"name": "gelato-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"devDependencies": {
"eslint": "5.16.0",
"eslint-config-standard": "12.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.1.1",
"eslint-plugin-react": "7.13.0",
"eslint-plugin-standard": "4.0.0"
},
"scripts": {
"lint": "eslint ./gelato-app ./gelato-api ./gelato-data --ignore-pattern node_modules "
},
"keywords": [],
"author": "",
"license": "ISC",
"eslintConfig": {
"extends": [
"standard",
"standard-react"
],
"plugins": [
"chai-friendly"
],
"rules": {
"react/prop-types": "off",
"no-unused-expressions": 0,
"chai-friendly/no-unused-expressions": 2
},
"env": {
"mocha": true,
"jest": true
}
}
}