forked from microsoft/BotFramework-WebChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.69 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
{
"name": "botframework-webchat-root",
"version": "4.7.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",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": [],
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write packages/{bundle,component,core,embed,playground}/src/**/*.{js,jsx,ts,tsx}",
"prettier --write __tests__/**/*.{js,jsx,ts,tsx}",
"prettier --write samples/**/*.{js,html}",
"git add"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --ci",
"build": "lerna run --ignore playground --stream build",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"eslint": "lerna run --parallel --stream eslint",
"posteslint": "npm run prettier-readmes",
"prettier-readmes": "prettier --write **/**/*.md --tab-width 3 --single-quote true",
"start": "concurrently --kill-others --raw \"serve\" \"lerna run --ignore playground --parallel --stream start\"",
"tableflip": "npm run tableflip:start && npx lerna clean --yes --concurrency 8 && npx rimraf node_modules && npm ci && npm run bootstrap -- --concurrency 2 && npm run tableflip:end",
"tableflip:end": "echo ┬──┬ ノ( ゜-゜ノ) Tableflip complete. Now run npm start",
"tableflip:start": "echo (╯ರ ~ ರ)╯︵ ┻━┻ Begin tableflip.",
"test": "jest --watch",
"test:ci": "npm run test -- --ci --coverage true --no-watch",
"watch": "echo NPM script \"watch\" has been replaced with \"start\"."
},
"devDependencies": {
"@azure/storage-blob": "^12.0.0",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@babel/runtime": "^7.7.6",
"babel-jest": "^24.9.0",
"concurrently": "^5.0.2",
"core-js": "^3.5.0",
"coveralls": "^3.0.9",
"cross-env": "^6.0.3",
"eslint-plugin-react": "^7.17.0",
"get-port": "^5.0.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-image-snapshot": "^2.11.1",
"jest-junit": "^10.0.0",
"lerna": "^3.19.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react": "16.8.6",
"react-dom": "16.8.6",
"selenium-webdriver": "4.0.0-alpha.5",
"serve-handler": "^6.1.2"
},
"dependencies": {}
}