This repository was archived by the owner on Oct 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.55 KB
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
{
"name": "react-jungle-select",
"version": "0.1.0-alpha5",
"description": "React select and list component. Including search, mouse and keyboard support",
"main": "dist/index.js",
"repository": "https://github.com/WTTJ/react-jungle-select",
"author": "klacointe <kevinlacointe@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest --notify test/*",
"test:watch": "jest --notify --watch test/*",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"build:js": "babel src --out-dir dist",
"build:css": "node-sass src -o dist",
"build": "yarn clean && yarn lint && yarn build:js && yarn build:css && yarn docs:build",
"docs:dev": "cd gh-pages && NODE_ENV=development webpack-dev-server --config webpack.dev.config.js --port 9090 --d --hot --inline --progress --colors",
"docs:clean": "rm -rf docs/*",
"docs:images": "cp -r gh-pages/images docs/",
"docs:build": "yarn docs:clean && yarn docs:images && cd gh-pages && NODE_ENV=production webpack"
},
"dependencies": {
"diacritics": "^1.3.0",
"immutable": "^3.8.1",
"prop-types": "^15.5.10",
"qs": "^6.7.0",
"react-hotkeys": "^0.10.0",
"react-immutable-proptypes": "=2.1.0",
"react-onclickoutside": "^6.1.1"
},
"devDependencies": {
"@maji/react-prism": "=1.0.0",
"babel-cli": "=6.24.1",
"babel-core": "=6.24.0",
"babel-eslint": "7.2.3",
"babel-jest": "=21.2.0",
"babel-loader": "=6.4.1",
"babel-preset-es2015": "=6.24.0",
"babel-preset-react": "=6.23.0",
"babel-preset-stage-0": "=6.22.0",
"chai": "=3.5.0",
"chai-string": "=1.4.0",
"css-loader": "=0.28.0",
"enzyme": "=3.1.0",
"enzyme-adapter-react-16": "=1.0.2",
"eslint": "3.19.0",
"eslint-config-react-app": "=2.0.0",
"eslint-loader": "=1.9.0",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "5.0.1",
"eslint-plugin-react": "7.0.1",
"extract-text-webpack-plugin": "=2.1.2",
"file-loader": "=0.11.1",
"jest": "21.2.1",
"lodash": "=4.17.4",
"node-sass": "4.11.0",
"prismjs": "=1.6.0",
"raw-loader": "=0.5.1",
"react": "^16.0.0",
"react-addons-css-transition-group": "=15.5.2",
"react-dom": "^16.0.0",
"react-hot-loader": "v3.0.0-beta.6",
"react-redux": "=5.0.6",
"react-router-dom": "=4.1.2",
"react-router-hash-link": "=1.1.0",
"react-tabs": "=0.8.3",
"redux": "=3.7.2",
"redux-form": "=7.0.3",
"sass-loader": "=6.0.5",
"style-loader": "=0.16.1",
"webpack": "3.0.0",
"webpack-dev-server": "=2.4.2"
}
}