forked from sjoerdapp/styleguide2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.17 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
{
"name": "styleguide-boilerplate",
"version": "0.0.1",
"description": "A collection of React components for using in your app",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.standalone.config.js",
"lint": "npm run lint:js && lint:styl",
"lint:js": "eslint .",
"lint:styl": "stylint src",
"landing": "webpack --config webpack.landing.config.js",
"start-dev": "webpack-dev-server --config webpack.dev.config.js --hot --inline --port ${PORT:-3000}",
"start": "npm run landing && pushstate-server build/ ${PORT:-3000}"
},
"repository": {
"type": "git",
"url": "https://github.com/rickyrauch/styleguide-boilerplate"
},
"author": "rickyrauch@gmail.com",
"license": "MIT",
"dependencies": {
"babel-polyfill": "^6.9.1",
"babel-standalone": "^6.7.7",
"blacklist": "^1.1.2",
"charming": "^1.0.1",
"classnames": "^2.2.3",
"decamelize": "^1.2.0",
"flexboxgrid": "^6.3.0",
"formsy-react": "^0.18.0",
"formsy-react-components": "^0.7.1",
"normalize.css": "^4.1.1",
"pushstate-server": "^1.8.1",
"react": "^0.14.8",
"react-codemirror": "git+https://github.com/JedWatson/react-codemirror.git",
"react-dom": "^0.14.8",
"react-highlight.js": "^1.0.2",
"react-icons": "^2.0.1",
"react-modal": "^0.6.1",
"react-prop-types": "^0.3.2",
"react-router": "^2.4.0",
"stylus": "^0.54.2",
"svg-loader": "0.0.2"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.0.20",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.0.15",
"css-loader": "^0.23.1",
"eslint": "^2.4.0",
"eslint-config-auth0": "^1.0.0",
"eslint-plugin-react": "^4.2.3",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.10.0",
"poststylus": "^0.2.3",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"serve": "^1.4.0",
"style-loader": "^0.13.0",
"stylint": "^1.3.6",
"stylus-loader": "^2.0.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}