forked from elastic/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.14 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
{
"name": "@elastic/react-search-ui-views",
"version": "1.7.0",
"description": "A collection of React UI components for building search experiences",
"license": "Apache-2.0",
"main": "lib",
"module": "es",
"sideEffects": [
"*.css"
],
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/search-ui.git",
"directory": "packages/react-search-ui-views"
},
"scripts": {
"test-ci": "jest --runInBand",
"test": "./bin/test",
"clean": "rimraf es lib",
"build-css": "./bin/build-css",
"watch-css": "./bin/watch-css",
"watch-js": "./bin/watch-js",
"build-js": "./bin/build-js",
"build": "run-s clean build-css build-js",
"watch": "run-p watch-css watch-js",
"prepare": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"bugs": {
"url": "https://github.com/elastic/search-ui/issues"
},
"peerDependencies": {
"react": "^16.8.0"
},
"jest": {
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/styleMock.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.5.4",
"@storybook/addon-actions": "^4.1.18",
"@storybook/addon-links": "^4.1.18",
"@storybook/addons": "^4.1.18",
"@storybook/react": "^4.1.18",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"chokidar-cli": "^1.2.2",
"core-js": "^3.6.5",
"core-js-pure": "^3.6.5",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"jest": "^24.8.0",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.3",
"postcss-import": "^12.0.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^2.6.3"
},
"dependencies": {
"downshift": "^3.2.10",
"rc-pagination": "^1.20.1",
"react-select": "^2.4.4"
}
}