-
Notifications
You must be signed in to change notification settings - Fork 335
/
package.json
76 lines (76 loc) · 2.42 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
{
"private": true,
"name": "@bottender/workspace",
"description": "A framework for building conversational user interfaces.",
"license": "MIT",
"homepage": "https://bottender.js.org/",
"repository": {
"type": "git",
"url": "https://github.com/Yoctol/bottender.git"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "git clean -dfqX -- ./node_modules **/{dist,node_modules}/ ./packages/*/tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.build.json",
"compile:clean": "tsc --build tsconfig.build.json --clean",
"postinstall": "yarn compile",
"lint": "eslint packages examples --ext=js,ts",
"lint:fix": "yarn lint:fix:md && yarn lint --fix",
"lint:fix:md": "prettier --write **/*.md",
"lint:staged": "lint-staged",
"lint:website": "eslint website --ext=js,ts,tsx",
"prepare": "husky install",
"publish": "lerna publish",
"prepublishOnly": "yarn clean && yarn && yarn test",
"test": "yarn compile && yarn lint && yarn testonly",
"testonly": "jest",
"testonly:cov": "jest --coverage",
"testonly:watch": "jest --watch",
"version": "cp README.md packages/bottender"
},
"workspaces": [
"packages/*"
],
"dependencies": {},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/prettier": "^2.4.1",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"axios-mock-adapter": "^1.20.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-yoctol": "^0.26.3",
"eslint-config-yoctol-base": "^0.24.2",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-tsdoc": "^0.2.14",
"glob": "^7.2.0",
"husky": "^7.0.2",
"jest": "^27.2.4",
"jest-junit": "^12.3.0",
"lerna": "^3.22.1",
"lint-staged": "^11.1.2",
"micromatch": "^4.0.4",
"mkdirp": "^1.0.4",
"mockdate": "^3.0.5",
"nock": "^13.1.3",
"once": "^1.4.0",
"prettier": "^2.4.1",
"prettier-package-json": "^2.6.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"typescript": "^3.9.6"
},
"engines": {
"node": ">=8"
}
}