forked from microsoft/botframework-webchat-chat-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.14 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
{
"name": "botframework-webchat-chat-adapter",
"version": "0.0.3-0",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"private": false,
"author": "William Wong <[email protected]> (http://compulim.info/)",
"license": "MIT",
"browser": "dist/chat-adapter.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/core-js": "^2.5.3",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"concurrently": "^5.1.0",
"dotenv": "^8.2.0",
"global-agent": "^2.1.8",
"has-resolved": "^1.1.0",
"jest": "^25.2.3",
"p-defer": "^3.0.0",
"prettier": "^2.0.2",
"source-map-loader": "^0.2.4",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-stats-plugin": "^0.3.1"
},
"dependencies": {
"abort-controller": "^3.0.0",
"abort-controller-es5": "^1.0.1",
"core-js": "^3.6.4",
"event-target-shim": "^5.0.1",
"event-target-shim-es5": "^1.0.1",
"math-random": "^1.0.4",
"p-defer-es5": "^1.0.1",
"redux": "^4.0.5",
"simple-update-in": "^2.1.1"
},
"files": [
"lib/**/*",
"dist/**/*",
"src/types/**/*.d.ts"
],
"scripts": {
"tsc": "tsc --p ./src/tsconfig.json 2>&1 || true && echo Please ignore tsc errors for now!",
"build": "npm run build:babel && npm run build:webpack && npm run tsc",
"build:babel": "babel src/ --copy-files --extensions .js,.ts,.tsx --no-copy-ignored --out-dir lib/ --verbose",
"build:webpack": "webpack",
"prestart": "npm run build:babel",
"start": "concurrently --kill-others --names \"babel,serve,webpack\" \"npm run start:babel\" \"npm run start:serve\" \"npm run start:webpack\"",
"start:babel": "npm run build:babel -- --skip-initial-build --watch",
"start:serve": "serve",
"start:webpack": "npm run build:webpack -- --watch",
"test": "jest --watch"
}
}