-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.59 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
{
"name": "@lt/lt-bots-webchat-client",
"version": "1.0.8-1",
"description": "LiveBots-specific code that loads and overrides the core lt-bots-webchat package",
"main": "./dist/bundle.js",
"types": "./dist/WebChatClient.d.ts",
"scripts": {
"start": "cross-env NODE_ENV=local webpack-dev-server --config=./config/webpack.config.dev.js --progress --colors",
"build": "webpack --config=./config/webpack.config.js --progress --colors",
"build:dev": "rimraf ./dist && cross-env NODE_ENV=development webpack --config=./config/webpack.config.js --progress --colors",
"build:test": "rimraf ./dist && cross-env NODE_ENV=test webpack --config=./config/webpack.config.js --progress --colors"
},
"repository": {
"type": "git",
"url": "https://livetilesnyc.visualstudio.com/LiveBot/_git/WebChatClient"
},
"keywords": [
"LiveTiles",
"LiveBots",
"Bots"
],
"author": "LiveTiles",
"license": "ISC",
"dependencies": {
"@lt/lt-bots-webchat": "^0.11.20-98",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.5",
"moment": "^2.19.1",
"msal": "^0.1.5",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"react-scrollbar": "^0.5.1",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"@types/classnames": "^2.2.3",
"@types/react-dom": "0.14.23",
"@types/react-scrollbar": "^0.4.8",
"azure-storage": "^2.6.0",
"copy-webpack-plugin": "^4.1.1",
"cross-env": "^5.2.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^0.11.2",
"fork-ts-checker-webpack-plugin": "^0.2.8",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"postcss": "^6.0.13",
"postcss-browser-reporter": "^0.5.0",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"postcss-reporter": "^5.0.0",
"postcss-url": "^7.1.2",
"react-dev-utils": "^3.0.1",
"react-hot-loader": "^1.3.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.2",
"style-loader": "^0.18.2",
"svg-inline-loader": "^0.8.0",
"ts-loader": "^2.3.7",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2",
"url-loader": "^0.5.9",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.9.1",
"webpack-manifest-plugin": "^1.3.2"
},
"files": [
"dist/"
]
}