-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
70 lines (70 loc) · 2.19 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
{
"name": "chat-template",
"version": "0.0.26",
"description": "Chat-Template is a React component that enables quick prototyping of bot conversations.",
"repository": {
"type": "git",
"url": "https://github.com/sevenleaps/chat-template.git"
},
"license": "MIT",
"scripts": {
"prepublish": ". ./.scripts/prepublish.sh",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"testonly": "mocha --require .scripts/mocha_runner src/**/tests/**/*.js",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"storybook": "start-storybook -p 9010",
"publish-storybook": "bash .scripts/publish_storybook.sh",
"bundle-js-dev": "webpack --config ./webpack.dev.config.js",
"bundle-js-prod": "webpack -p --config ./webpack.prod.config.js",
"bundle-js": "npm run test && npm run bundle-js-dev && npm run bundle-js-prod"
},
"devDependencies": {
"@kadira/storybook": "1.27.0",
"babel-cli": "6.9.0",
"babel-core": "6.9.0",
"babel-eslint": "6.0.4",
"babel-loader": "6.2.4",
"babel-plugin-transform-runtime": "6.9.0",
"babel-polyfill": "6.9.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.5.0",
"babel-preset-stage-1": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"babel-runtime": "6.9.0",
"chai": "3.5.0",
"enzyme": "2.3.0",
"eslint": "2.10.2",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-babel": "3.2.0",
"eslint-plugin-import": "1.8.0",
"eslint-plugin-jsx-a11y": "1.2.2",
"eslint-plugin-react": "5.1.1",
"git-url-parse": "6.0.2",
"jsdom": "9.1.0",
"mocha": "2.5.1",
"raw-loader": "0.5.1",
"react": "15.1.0",
"react-addons-test-utils": "15.1.0",
"sinon": "1.17.4",
"style-loader": "0.13.1",
"webpack": "1.13.1"
},
"peerDependencies": {
"react": "0.14.7 || 15.1.0"
},
"dependencies": {
"aphrodite": "0.3.1",
"material-ui": "0.15.0",
"object-assign-deep": "0.0.4",
"react-addons-css-transition-group": "15.1.0",
"react-dom": "15.1.0",
"react-scroll": "^1.5.2",
"react-scrollbar": "^0.5.1"
},
"main": "dist/index.js",
"engines": {
"npm": "3.0.0"
}
}