-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
51 lines (51 loc) · 1.8 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
{
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap && lerna run build --scope botfuel-dialog && lerna link --force-local",
"clean": "lerna clean && node clean.js",
"style": "lerna run style",
"pretest": "npm run bootstrap",
"release": "npm test && lerna run build --scope botfuel-dialog && lerna publish --conventional-commits --changelog-preset=angular",
"unit-test": "BOTFUEL_APP_TOKEN=TEST_BOT BOTFUEL_APP_ID=TEST_BOT BOTFUEL_APP_KEY=TEST_BOT jest --maxWorkers=3 packages/botfuel-dialog",
"test": "jest --maxWorkers=3 --forceExit",
"test-ci": "jest --maxWorkers=2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.0.0",
"@commitlint/cli": "^7.6.1",
"@commitlint/config-conventional": "^7.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-react": "^7.1.0",
"husky": "^2.3.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"replay": "^2.1.4",
"shelljs": "^0.8.2"
},
"workspaces": [
"packages/*"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}