-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 2.24 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
{
"name": "react-dadjoke",
"version": "0.2.1",
"description": "React component for displaying random dad jokes",
"main": "dist/DadJoke.js",
"scripts": {
"dist": "webpack --config webpack.dist.config.js",
"standalone": "webpack --config webpack.standalone.config.js",
"docs:build": "webpack --devtool inline-source-map",
"docs:deploy": "npm run docs:build && git add demo/dist && git commit -m \"rebuild docs\" && git subtree push --prefix demo/dist origin gh-pages",
"start": "webpack-dev-server --devtool inline-source-map --progress --colors --inline --hot --content-base demo",
"test": ""
},
"repository": {
"type": "git",
"url": "https://github.com/Opentrace/react-dadjoke"
},
"keywords": [
"react",
"reactjs",
"react component",
"react-dadjoke"
],
"author": "Mark Rabey <mark@opentrace.ca>",
"license": "MIT",
"dependencies": {
"axios": "^0.16.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-bootstrap": "^0.31.0",
"react-dom": "^15.6.1",
"react-highlight": "^0.10.0"
},
"devDependencies": {
"autoprefixer": "^7.1.2",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"eslint_d": "^5.0.0",
"extract-text-webpack-plugin": "^2.1.2",
"jasmine-core": "^2.6.4",
"jasmine-react-matchers": "^1.0.2",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.3",
"mock-promises": "^0.8.2",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"promise-mock": "^1.1.1",
"react-addons-test-utils": "^15.6.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
}
}