forked from elastic/search-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.06 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
{
"name": "@elastic/react-search-ui-views",
"version": "0.10.0",
"description": "A collection of React UI components for building search experiences",
"license": "Apache-2.0",
"main": "lib",
"module": "es",
"sideEffects": false,
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elastic/search-ui.git"
},
"scripts": {
"test-ci": "jest --runInBand",
"test": "jest",
"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": {
"setupTestFrameworkScriptFile": "<rootDir>/src/setupTests.js",
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/__mocks__/styleMock.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^4.1.0",
"@storybook/addon-links": "^4.1.0",
"@storybook/addons": "^4.1.0",
"@storybook/react": "^4.1.0",
"babel-loader": "^8.0.4",
"chokidar-cli": "^1.2.1",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"jest": "^23.6.0",
"node-sass": "^4.11.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.1",
"postcss-import": "^12.0.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"autoprefixer": "^9.4.7",
"core-js": "^2.6.9",
"deep-equal": "^1.0.1",
"downshift": "^3.2.7",
"rc-pagination": "^1.17.3",
"react-select": "^2.1.1"
}
}