-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 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
95
96
{
"name": "auth0-extension-ui",
"version": "1.2.2",
"description": "Auth0 Extension UI",
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && cross-env NODE_ENV=production webpack --config ./.storybook/webpack.config.js --colors -p",
"build-dev": "npm run clean && cross-env NODE_ENV=development webpack -d --config ./.storybook/webpack.config.js --colors",
"release": "npm run build && git tag $npm_package_version && git push && git push --tags && npm publish",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"testonly": "mocha --require .scripts/mocha_runner --require ignore-styles src/**/components/**/*.specs.js",
"test": "npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"storybook": "start-storybook -p 9010",
"publish-storybook": "cross-env NODE_ENV=development bash .scripts/publish_storybook.sh",
"postpublish": "npm run publish-storybook"
},
"keywords": [
"auth0"
],
"author": "auth0",
"license": "MIT",
"devDependencies": {
"@kadira/storybook": "^2.2.1",
"@kadira/storybook-addon-hello": "^1.0.1",
"auth0-styleguide": "auth0/styleguide#4.6.5",
"babel-cli": "^6.18.0",
"babel-core": "^6.5.0",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.18.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"cross-env": "^5.1.3",
"codemirror": "^5.19.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.0",
"eslint-config-auth0": "^6.0.1",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"file-loader": "^0.9.0",
"git-url-parse": "^6.0.1",
"ignore-styles": "^5.0.1",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"raw-loader": "^0.5.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-bootstrap": "^0.31.0",
"react-codemirror": "^0.2.6",
"react-dom": "^15.3.2",
"react-dropzone": "^3.6.0",
"react-loader-advanced": "^1.4.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-select": "^1.1.0",
"react-select-fast-filter-options": "^0.2.3",
"react-virtualized-select": "^3.1.3",
"redux": "^3.6.0",
"redux-form": "^6.0.5",
"rimraf": "^2.6.1",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"url": "^0.11.0",
"url-loader": "^0.5.7",
"webpack": "1"
},
"peerDependencies": {
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^2.8.1",
"redux": "^3.6.0"
},
"dependencies": {
"babel-runtime": "^6.11.6",
"cross-env": "^5.1.3",
"css-loader": "^0.25.0",
"path": "^0.12.7",
"stylus-loader": "^2.3.1"
}
}