-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "my-react-component-library",
"version": "0.0.2",
"description": "A monorepo for your own react modules including a styleguide. Easy to maintain and distribute.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/raoulus/my-react-component-library.git"
},
"scripts": {
"create:component": "bash scripts/create-component.sh",
"dev:livereload": "livereload demo/public -w 1000",
"dev:server": "nodemon demo/index.js --watch demo/app.js",
"build:demo": "webpack --config demo/webpack.config.js --output-pathinfo --progress --profile --display-error-details",
"build:demo:watch": "webpack --config demo/webpack.config.js --progress --profile --watch --display-error-details",
"test": "mocha --compilers js:babel-core/register --require test-setup.js --require babel-polyfill --require ignore-styles 'components/**/*.spec.js'",
"test:ci": "npm run lint && npm test",
"test:watch": "npm test -- --watch",
"lint": "eslint . --quiet",
"start": "run-p dev:livereload dev:server build:demo:watch",
"release": "release-flow",
"release:build": "npm run lint && npm run release:build:css",
"release:build:demo": "NODE_ENV=production webpack --config demo/webpack.config.js -p --profile",
"release:build:css": "bash scripts/compile-less-themes.sh",
"publish:components": "lerna publish --skip-npm"
},
"author": "Raoul Jaeckel",
"license": "TBD",
"dependencies": {},
"devDependencies": {
"babel-core": "6.18.0",
"babel-eslint": "7.0.0",
"babel-loader": "6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-es2015-webpack": "6.4.3",
"babel-preset-react": "6.16.0",
"babel-preset-stage-0": "6.16.0",
"babel-standalone": "6.19.0",
"basscss": "8.0.3",
"body-parser": "1.15.2",
"chai": "3.5.0",
"clean-webpack-plugin": "0.1.13",
"compression": "1.6.2",
"css-loader": "0.25.0",
"ejs": "2.5.2",
"enzyme": "2.4.1",
"eslint": "3.8.1",
"eslint-config-google": "0.7.0",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-mocha": "4.7.0",
"eslint-plugin-react": "6.4.1",
"expose-loader": "webpack-contrib/expose-loader#17/head",
"express": "4.14.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.24.0",
"ignore-styles": "5.0.1",
"jsdom": "9.8.3",
"json": "9.0.4",
"json-loader": "0.5.4",
"lerna": "2.0.0",
"less": "2.7.1",
"less-loader": "2.2.3",
"less-plugin-clean-css": "1.5.1",
"less-plugin-glob": "1.1.1",
"livereload": "0.6.0",
"mocha": "3.2.0",
"nodemon": "1.11.0",
"npm-run-all": "3.1.2",
"react": "15.3.2",
"react-addons-test-utils": "15.3.1",
"react-codemirror": "0.3.0",
"react-docgen": "2.12.1",
"react-dom": "15.3.2",
"react-fa": "4.1.2",
"react-markdown": "2.4.2",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"redux": "3.6.0",
"redux-thunk": "2.1.0",
"release-flow": "1.2.1",
"sinon": "1.17.6",
"sinon-chai": "2.8.0",
"style-loader": "0.13.1",
"superagent": "2.3.0",
"url-loader": "0.5.7",
"webpack": "2.0.5-beta"
}
}