forked from voiceflow/libs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.43 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
{
"name": "root",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "16.0.2",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^8.2.2",
"@types/node": "16.11.12",
"@types/sinon": "^10.0.0",
"@voiceflow/commitlint-config": "2.0.1",
"@voiceflow/eslint-config": "6.1.0",
"@voiceflow/git-branch-check": "1.4.0",
"@voiceflow/prettier-config": "1.2.1",
"@voiceflow/tsconfig": "1.4.8",
"@zerollup/ts-transform-paths": "^1.7.18",
"chai": "4.3.6",
"chai-as-promised": "^7.1.1",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"depcheck": "^1.4.1",
"eslint": "8.19.0",
"eslint-output": "^3.0.1",
"fixpack": "^4.0.0",
"husky": "^4.3.8",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"mocha": "9.2.2",
"nyc": "^15.1.0",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"sinon": "^10.0.0",
"source-map-support": "^0.5.19",
"ts-mocha": "^8.0.0",
"ts-node": "10.9.0",
"tsconfig-paths": "4.0.0",
"ttypescript": "1.5.13",
"typescript": "4.7.4"
},
"prettier": "@voiceflow/prettier-config",
"private": true,
"resolutions": {
"strip-ansi": "6.0.1"
},
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"build": "yarn build:cjs && yarn build:esm",
"build:all": "yarn build",
"build:cjs": "ttsc --build",
"build:esm": "ttsc --build tsconfig.esm.json",
"clean": "yarn clean:artifacts && yarn clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:root": "rimraf node_modules",
"commit": "cz",
"lint": "lerna run lint --parallel",
"lint:fix": "lerna run lint:fix --parallel",
"lint:quiet": "lerna run lint:quiet --parallel",
"lint:report": "lerna run lint:report --parallel",
"postinstall": "test -e node_modules/_bootstrap && lerna bootstrap && rm node_modules/_bootstrap || true",
"preinstall": "! test -d node_modules && mkdir node_modules && touch node_modules/_bootstrap || true",
"test": "lerna run test --parallel",
"test:dependencies": "lerna run test:dependencies --parallel",
"test:integration": "lerna run test:integration --parallel",
"test:run": "lerna run test:run --parallel",
"test:unit": "lerna run test:unit --parallel "
},
"workspaces": [
"packages/*"
]
}