forked from gregchamberlain/react-chips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.89 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
{
"name": "react-chips",
"version": "0.8.0",
"description": "A flexible and easy to use Chips component for React",
"keywords": [
"react",
"react-component"
],
"main": "lib/index.js",
"scripts": {
"start": "node tools/devServer.js",
"test": "jest",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"build": "NODE_ENV=production ./tools/build.sh",
"buildSite": "NODE_ENV=production webpack --config webpack.config.prod.js --progress",
"prepublish": "npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -c .storybook -o docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregchamberlain/react-chips.git"
},
"author": "Greg Chamberlain <[email protected]> (https://gregchamberlain.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/gregchamberlain/react-chips/issues"
},
"homepage": "https://github.com/gregchamberlain/react-chips#readme",
"devDependencies": {
"@kadira/storybook": "^2.35.3",
"babel-cli": "^6.16.0",
"babel-core": "^6.5.2",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"enzyme": "^3.7.0",
"eslint": "^3.3.0",
"express": "^4.14.0",
"jest": "^19.0.1",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"react-test-renderer": "^16.5.2",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^0.14.0 || ^16.4.1"
},
"dependencies": {
"radium": "^0.25.0",
"react-autosuggest": "^9.0.1",
"react-themeable": "^1.1.0"
}
}