-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.87 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@stoplight/webpack",
"version": "0.0.0",
"description": "Webpack helpers, built on top of webpack-chain.",
"keywords": [
"webpack",
"webpack-chain"
],
"main": "dist/index.js",
"sideEffects": false,
"homepage": "https://github.com/stoplightio/webpack",
"bugs": "https://github.com/stoplightio/webpack/issues",
"author": "Stoplight <support@stoplight.io>",
"repository": {
"type": "git",
"url": "https://github.com/stoplightio/webpack.git"
},
"license": "Apache-2.0",
"files": [
"**/*"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "sl-scripts build",
"build.docs": "sl-scripts build:typedoc",
"commit": "git-cz",
"lint": "tslint -c tslint.json 'src/**/*.ts?'",
"lint.fix": "yarn lint --fix",
"release": "sl-scripts release",
"release.docs": "sl-scripts release:docs",
"release.dryRun": "sl-scripts release --dry-run --debug",
"test": "jest",
"test.prod": "yarn lint && yarn test --coverage --maxWorkers=2",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch",
"postbuild": "cp src/index.html dist/index.html",
"push.yalc": "yarn build && cd dist && yalc push"
},
"dependencies": {
"@babel/core": "^7.7.5",
"@types/history": "^4.7.3",
"babel-loader": "^8.0.6",
"cache-loader": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.0.5",
"cross-env": "^6.0.3",
"css-loader": "^3.2.1",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^3.1.1",
"html-webpack-plugin": "^3.2.0",
"monaco-editor-webpack-plugin": "^1.7.0",
"style-loader": "^1.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"url-loader": "^2.2.0",
"webpack": "^4.41.2",
"webpack-bugsnag-plugins": "^1.4.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-chain": "^6.0.0",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpackbar": "^4.0.0",
"worker-loader": "^2.0.0"
},
"devDependencies": {
"@stoplight/scripts": "^5.0.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.14",
"browserfs": "*",
"jest": "^24.9.0",
"monaco-editor": "*",
"ts-jest": "^24.2.0",
"tslint-config-stoplight": "^1.4.0",
"typescript": "^3.7.3"
},
"lint-staged": {
"*.ts": [
"yarn lint.fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@stoplight/scripts/release"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5"
}
}