forked from chimpanzees/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "auth0-styleguide-website",
"version": "0.0.0",
"description": "",
"main": "build/server.js",
"scripts": {
"prepublish": "(in-publish && exit 1) || (not-in-publish && NODE_ENV=production npm run build -- --bail)",
"build": "webpack --config tools/webpack/webpack.browser.config.babel.js",
"start": "NODE_ENV=development babel-node tools/tasks/start.js",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint .",
"lint:css": "stylelint build/*.css",
"test": "npm run lint"
},
"keywords": [],
"author": "Auth0 (https://auth0.com)",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": "^6.9.1",
"npm": "^3.10.8"
},
"dependencies": {
"auth0-styleguide-components": "*",
"auth0-styleguide-core": "*",
"auth0-styleguide-react-components": "*",
"babel-polyfill": "^6.16.0",
"codemirror": "^5.19.0",
"component-playground": "^1.3.1",
"highlight.js": "^9.7.0",
"jump.js": "^1.0.1",
"react": "^15.3.2",
"react-bootstrap": "^0.30.6",
"react-copy-to-clipboard": "^4.2.3",
"react-docgen": "^2.11.0",
"react-dom": "^15.3.2",
"react-router": "^4.0.0-alpha.5",
"serve": "^1.4.0"
},
"devDependencies": {
"autoprefixer": "^6.5.0",
"babel-cli": "^6.18.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-react-jsx-self": "^6.11.0",
"babel-plugin-transform-react-jsx-source": "^6.9.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"conventional-changelog-cli": "^1.2.0",
"css-loader": "^0.25.0",
"eslint": "^3.12.2",
"eslint-config-auth0": "^9.0.1",
"eslint-import-resolver-node": "^0.2.3",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"in-publish": "^2.0.0",
"json-loader": "^0.5.4",
"lodash": "^4.16.4",
"poststylus": "^0.2.3",
"pug": "^2.0.0-beta6",
"pug-loader": "^2.3.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^3.0.0-beta.5",
"style-loader": "^0.13.1",
"stylelint": "^7.5.0",
"stylelint-config-standard": "^14.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"url-loader": "^0.5.7",
"webpack": "^2.1.0-beta.25",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.1"
}
}