forked from jovotech/jovo-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.26 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
{
"name": "root",
"private": true,
"scripts": {
"lerna": "lerna",
"init": "lerna bootstrap",
"tsc": "lerna exec npm run tsc --ignore jovo-examples-*",
"tslint": "lerna exec npm run tslint --ignore jovo-examples-*",
"test": "lerna exec npm test --ignore jovo-examples-*",
"clean": "lerna clean",
"rimraf": "lerna exec npm run rimraf --ignore jovo-examples-*",
"list": "lerna list -l",
"bootstrap": "lerna bootstrap --hoist --no-ci",
"devsetup": "npm run bootstrap && npm run tsc",
"typedoc": "npm run lerna exec npm run typedoc",
"changelog": "lerna-changelog",
"preparePublish": "npm run rimraf && npm run tsc && npm run tslint && npm run test",
"publish": "lerna publish --no-push"
},
"devDependencies": {
"@azure/functions": "^1.0.1-beta2",
"@google-cloud/datastore": "^2.0.0",
"@types/es6-promise": "^3.3.0",
"@types/express": "^4.16.0",
"@types/google-cloud__datastore": "^1.3.3",
"@types/i18next": "^12.1.0",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.109",
"@types/lodash.camelcase": "^4.3.4",
"@types/lodash.clonedeep": "^4.5.4",
"@types/lodash.get": "^4.4.6",
"@types/lodash.isequal": "^4.5.3",
"@types/lodash.map": "^4.6.13",
"@types/lodash.mapvalues": "^4.6.4",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.sample": "^4.2.4",
"@types/lodash.set": "^4.3.6",
"@types/lodash.transform": "^4.6.4",
"@types/mongodb": "^3.1.17",
"@types/mysql": "^2.15.5",
"@types/node": "^10.3.1",
"@types/socket.io-client": "^1.4.32",
"@types/uuid": "^3.4.4",
"gulp": "^4.0.0",
"gulp-install": "^1.1.0",
"gulp-run-command": "0.0.9",
"gulp-zip": "^4.2.0",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lerna-changelog": "^0.8.2",
"prettier": "1.17.1",
"source-map-support": "^0.5.8",
"ts-jest": "^24.0.1",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.13.0",
"typescript": "^3.4.1"
},
"changelog": {
"repo": "jovotech/jovo-framework-nodejs",
"labels": {
"tag: new feature": ":rocket: New Feature",
"tag: breaking change": ":boom: Breaking Change",
"tag: bug fix": ":bug: Bug Fix",
"tag: enhancement": ":nail_care: Enhancement",
"tag: documentation": ":memo: Documentation"
},
"cacheDir": ".changelog"
},
"prettier": {
"useTabs": true,
"singleQuote": true
}
}