-
Notifications
You must be signed in to change notification settings - Fork 468
/
package.json
64 lines (64 loc) · 2.31 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
{
"private": true,
"name": "reactivesearch-packages",
"scripts": {
"dev:web": "concurrently --kill-others -n \"CORE\",\"WEB\",\"MAPS\", -c \"cyan\",\"yellow\",\"green\", \"npm start --prefix packages/reactivecore\" \"npm run watch --prefix packages/web\" \"npm run watch --prefix packages/maps\"",
"dev:vue": "concurrently --kill-others -n \"CORE\",\"WEB\", -c \"cyan\",\"yellow\",\"green\", \"npm start --prefix packages/reactivecore\" \"npm run watch --prefix packages/vue\"",
"lint": "eslint .",
"lint:ts": "tslint -c tslint.json 'packages/web/**/**/*.{ts,tsx}'",
"lint:ts-fix": "tslint -c tslint.json --fix 'packages/web/**/**/*.{ts,tsx}'",
"deploy-site": "scripts/deploy-site.sh",
"native:publish-stories": "cd packages/native/examples/datasearch/ && exp publish && cd .. && cd datepicker/ && exp publish && cd .. && cd daterange/ && exp publish && cd .. && cd multidropdownlist/ && exp publish && cd .. && cd multidropdownrange/ && exp publish && cd .. && cd singledropdownlist/ && exp publish && cd .. && cd singledropdownrange/ && exp publish && cd .. && cd textfield/ && exp publish && cd ../../../../"
},
"author": "metagrover",
"license": "Apache-2.0",
"workspaces": [
"packages/*",
"packages/web/examples/*",
"packages/web/examples/ReactiveChart/*",
"packages/web/examples/mongo-examples/*",
"packages/vue/examples/*",
"packages/vue/examples/mongo-examples/*",
"packages/vue/examples/search-showcase/*",
"packages/vue/demos/*",
"packages/maps/examples/*",
"packages/maps/examples/mongo-examples/*",
"site",
"site/demos/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.3",
"concurrently": "^3.5.1",
"eslint": "^7.29.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nps": "^5.9.5",
"nps-utils": "^1.7.0",
"prettier": "^2.3.2",
"yorkie": "^2.0.0"
},
"engines": {
"node": ">=10.16"
},
"volta": {
"node": "16.20.2"
}
}