-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "instant-search-demo",
"version": "2.0.0",
"private": true,
"repository": "algolia/instant-search-demo",
"author": "Algolia (https://www.algolia.com)",
"license": "MIT",
"scripts": {
"start": "browser-sync start --server . --files 'assets/*.css,**/*.js,**/*.html' --no-open",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint"
},
"renovate": {
"extends": [
"config:application",
"schedule:weekends",
":automergeMinor",
":automergeBranchPush",
":semanticCommits",
":rebaseStalePrs",
":timezone(Europe/Paris)"
]
},
"homepage": "https://github.com/algolia/instant-search-demo#readme",
"devDependencies": {
"babel-eslint": "8.2.6",
"browser-sync": "2.26.12",
"eslint": "4.19.1",
"eslint-config-algolia": "13.4.0",
"eslint-config-prettier": "2.10.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-prettier": "2.7.0",
"prettier": "1.19.1"
},
"engines": {
"node": "9.11.2",
"npm": "5.10.0"
}
}