This repository has been archived by the owner on Mar 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
94 lines (94 loc) · 3.04 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
{
"name": "@hackoregon/component-library",
"version": "0.2.5",
"description": "Official repo for Hack Oregon React component library",
"main": "index.js",
"scripts": {
"build": "npm run build-lib & npm run build-dist",
"build-lib": "babel src --out-dir lib --copy-files",
"build-dist": "node ./build.js",
"prebump": "NODE_ENV=production npm run build",
"bump": "bump --prompt --commit --push",
"postbump": "editme -w",
"clean": "rimraf lib dist",
"test": "mocha --opts ./mocha.options ./src/**/*.test.js",
"test:watch": "npm run test -- -w",
"start": "start-storybook -p 6006",
"lint": "eslint src stories --fix",
"deploy-storybook": "storybook-to-ghpages",
"build-storybook": "build-storybook"
},
"author": "David Daniel <davidedaniel@gmail.com> (http://davidedaniel.github.io)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hackoregon/component-library"
},
"devDependencies": {
"@hackoregon/jinn": "^0.2.3",
"@kadira/react-storybook-addon-info": "^3.3.0",
"@kadira/storybook": "^2.21.0",
"@kadira/storybook-addon-knobs": "^1.7.0",
"@kadira/storybook-addons": "^1.6.1",
"@kadira/storybook-deployer": "^1.2.0",
"autoprefixer": "^6.7.7",
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-stage-1": "^6.16.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"css-loader": "^0.28.0",
"editme": "^1.1.0",
"enzyme": "^2.7.0",
"eslint": "^3.12.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-import-resolver-webpack": "^0.7.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.8.0",
"extract-text-webpack-plugin": "^1.0.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.12.0",
"jsdom-global": "2.1.1",
"mocha": "^3.2.0",
"mocha-clean": "^1.0.0",
"react-addons-css-transition-group": "^15.4.1",
"react-addons-shallow-compare": "^15.4.1",
"react-addons-test-utils": "^15.4.1",
"rimraf": "^2.6.1",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"source-map-support": "^0.4.11",
"style-loader": "^0.16.1",
"webpack": "1.13.3"
},
"dependencies": {
"classnames": "^2.2.5",
"copy-to-clipboard": "^3.0.5",
"d3": "^4.7.3",
"d3-format": "^1.1.1",
"d3-sankey": "^0.4.2",
"d3-shape": "^1.0.6",
"editme": "^1.1.0",
"leaflet": "^1.0.3",
"ramda": "^0.23.0",
"rc-slider": "^5.4.0",
"react": "^15.5.3",
"react-addons-transition-group": "^15.5.3",
"react-dom": "^15.5.3",
"react-faux-dom": "^3.0.1",
"react-leaflet": "^1.1.4",
"react-motion": "^0.4.7",
"react-router": "^3.0.0",
"react-select": "^1.0.0-rc.3",
"recharts": "^0.20.1",
"styled-components": "^1.4.4",
"version-bump-prompt": "^3.1.0"
}
}