-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.57 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
{
"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": [
"**/*",
"!__tests__"
],
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"build": "sl-scripts build",
"build.docs": "sl-scripts build:typedoc",
"commit": "git-cz",
"lint": "sl-scripts lint",
"lint.fix": "yarn lint --fix",
"release": "sl-scripts release",
"release.docs": "sl-scripts release:docs",
"release.dryRun": "sl-scripts release --dry-run --debug",
"test": "sl-scripts test",
"test.prod": "yarn lint && yarn test --coverage --no-cache",
"test.update": "yarn test --updateSnapshot",
"test.watch": "yarn test --watch",
"postbuild": "cp src/index.html dist/index.html"
},
"dependencies": {
"@babel/core": "7.2.x",
"@types/history": "4.7.x",
"@types/webpack-chain": "5.0.x",
"babel-loader": "8.0.x",
"cache-loader": "1.2.x",
"clean-webpack-plugin": "1.0.x",
"copy-webpack-plugin": "4.6.x",
"cross-env": "5.2.x",
"css-loader": "2.0.x",
"fork-ts-checker-webpack-plugin": "0.5.x",
"html-webpack-plugin": "3.2.x",
"monaco-editor-webpack-plugin": "1.7.0",
"style-loader": "0.23.x",
"stylus": "0.54.x",
"stylus-loader": "3.0.x",
"terser-webpack-plugin": "1.1.x",
"ts-loader": "5.3.x",
"tslint": "5.x.x",
"webpack": "4.27.x",
"webpack-bugsnag-plugins": "1.2.x",
"webpack-bundle-analyzer": "3.0.x",
"webpack-chain": "5.0.x",
"webpack-cli": "3.1.x",
"webpack-dev-server": "3.1.x",
"webpackbar": "3.1.x",
"worker-loader": "2.0.x"
},
"devDependencies": {
"@stoplight/scripts": "3.1.1",
"browserfs": "*",
"monaco-editor": "*",
"typescript": "3.2.2"
},
"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"
}
}