-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@olasearch/chat",
"version": "3.7.5",
"description": "Chat User Interface elements",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "npm run test -- --watch",
"watch": "babel --watch src --out-dir lib",
"standard": "standard --verbose --fix src/*",
"lint": "eslint src",
"release": "NODE_ENV=production webpack --display-optimization-bailout --config webpack.release.js",
"prettier-standard": "prettier-standard 'src/**/*.js'",
"prettier": "yarn prettier-standard && git add src && git status",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"push": "git push origin master --tags && git push github master --tags"
},
"author": "",
"license": "Copyright Ola Search Pte Ltd",
"pre-commit": [
"test",
"prettier",
"lint"
],
"prettier": {
"semi": false
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/test",
"/lib",
"/node_modules"
]
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|svg|css|scss)$": "<rootDir>/__tests__/filemock.js"
},
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup.js",
"collectCoverage": false,
"collectCoverageFrom": [
"**/src/**"
],
"testMatch": [
"**/*.spec.js"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint-plugin-babel": "^5.1.0",
"expect": "^23.2.0",
"jest": "^23.2.0",
"jsdom": "^11.11.0",
"node-sass": "^4.9.0",
"pre-commit": "^1.2.2",
"prettier-standard": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-styleguidist": "^7.0.19",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.12.0",
"sass-loader": "^7.0.3",
"standard": "^11.0.1",
"style-loader": "^0.21.0",
"webpack": "^4.13.0",
"webpack-bundle-size-analyzer": "^2.7.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2"
},
"dependencies": {
"@olasearch/alite": "^1.0.5",
"@olasearch/core": "^3.9.2",
"@olasearch/icons": "^1.0.2",
"@olasearch/logger": "^1.4.1",
"@olasearch/react-frame-portal": "^3.0.7",
"@olasearch/react-onclickoutside": "^6.7.3",
"@olasearch/solr-adapter": "^2.0.4",
"@olasearch/styled-jsx": "^2.2.7",
"@olasearch/textarea-elastic": "^1.0.2",
"classnames": "^2.2.6",
"dom-scroll-into-view": "^1.2.1",
"invariant": "^2.2.4",
"mitt": "^1.1.3",
"react-transition-group": "^2.4.0",
"watson-html5-speech-recognition": "^0.6.6"
}
}