forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 5.32 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "botframework-webchat-root",
"version": "4.15.2-0",
"private": true,
"files": [
"lib/**/*"
],
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/BotFramework-WebChat.git"
},
"bugs": {
"url": "https://github.com/microsoft/BotFramework-WebChat/issues"
},
"homepage": "https://github.com/microsoft/BotFramework-WebChat#readme",
"keywords": [],
"cldr-data-coverage": "full",
"scripts": {
"bootstrap": "lerna bootstrap --ci",
"browser": "node ./packages/test/harness/src/host/dev/index http://localhost:5001/__tests__/html/",
"browser:watch": "node-dev --no-notify --respawn ./packages/test/harness/src/host/dev/index http://localhost:5001/__tests__/html/",
"build": "lerna run --ignore playground --stream build",
"bump": "npm run bump:prod && npm run bump:dev",
"bump:dev": "npm install $(cat package.json | jq -r '(.devDependencies | keys) - .skipBump | .[]' | awk '{print $1 \"@latest\"}')",
"bump:prod": "npm install --save-exact $(cat package.json | jq -r '(.dependencies | keys) - .skipBump | .[]' | awk '{print $1 \"@latest\"}')",
"docker": "npm run docker:up",
"docker:down": "docker-compose -f docker-compose-wsl2.yml down --rmi all",
"docker:up": "docker-compose -f docker-compose-wsl2.yml down && docker-compose -f docker-compose-wsl2.yml up --build --scale chrome=4",
"eslint": "npm run precommit",
"lint-staged": "lint-staged",
"precommit": "lerna run --parallel --stream precommit -- ",
"precommit:eslint:api": "cd packages && cd api && npm run precommit:eslint",
"precommit:eslint:bundle": "cd packages && cd bundle && npm run precommit:eslint",
"precommit:eslint:component": "cd packages && cd component && npm run precommit:eslint",
"precommit:eslint:core": "cd packages && cd core && npm run precommit:eslint",
"precommit:eslint:directlinespeech": "cd packages && cd directlinespeech && npm run precommit:eslint",
"precommit:eslint:isomorphic-react-dom": "cd packages && cd isomorphic-react-dom && npm run precommit:eslint",
"precommit:eslint:isomorphic-react": "cd packages && cd isomorphic-react && npm run precommit:eslint",
"precommit:eslint:support-cldr-data-downloader": "cd packages && cd support && cd cldr-data-downloader && npm run precommit:eslint",
"precommit:eslint:support-cldr-data": "cd packages && cd support && cd cldr-data && npm run precommit:eslint",
"precommit:eslint:test-harness": "cd packages && cd test && cd harness && npm run precommit:eslint",
"precommit:eslint:test-page-object": "cd packages && cd test && cd page-object && npm run precommit:eslint",
"precommit:typecheck": "concurrently --raw \"npm run precommit:typecheck:*\"",
"precommit:typecheck:api": "cd packages && cd api && npm run precommit:typecheck",
"precommit:typecheck:bundle": "cd packages && cd bundle && npm run precommit:typecheck",
"precommit:typecheck:component": "cd packages && cd component && npm run precommit:typecheck",
"precommit:typecheck:core": "cd packages && cd core && npm run precommit:typecheck",
"prepare": "husky install",
"start": "concurrently --kill-others --raw \"serve\" \"serve -p 5001 -c serve-test.json\" \"lerna run --ignore playground --parallel --stream start\"",
"start:docker": "echo This command has been renamed to \"npm run docker\" && npm run docker",
"stop:docker": "echo This command has been renamed to \"npm run docker:down\" && npm run docker:down",
"tableflip": "npx lerna clean --yes --concurrency 8 && npx rimraf node_modules && npm ci && npm run bootstrap -- --concurrency 8",
"test": "jest --watch"
},
"skipBump": [
"@types/react-dom",
"get-port",
"node-fetch",
"react",
"react-dom",
"strip-ansi"
],
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@types/react-dom": "~16.8.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"abort-controller": "^3.0.0",
"babel-jest": "^27.5.1",
"concurrently": "^7.0.0",
"core-js": "^3.21.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"error-stack-parser": "^2.0.7",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-security": "^1.4.0",
"get-port": "^5.1.1",
"global-agent": "^3.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-image-snapshot": "^4.5.1",
"jest-junit": "^13.0.0",
"jest-trx-results-processor": "^2.2.1",
"lerna": "^4.0.0",
"lint-staged": "^12.3.4",
"lolex": "^6.0.0",
"node-dev": "^7.1.0",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.15",
"p-defer": "^4.0.0",
"prettier": "^2.5.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"selenium-webdriver": "^4.1.1",
"serve": "^13.0.2",
"serve-handler": "^6.1.3",
"strip-ansi": "^6.0.1",
"typescript": "^4.6.2",
"xmlbuilder": "^15.1.1"
}
}