forked from VD39/typescript-webpack-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.65 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
111
112
113
{
"name": "typescript-webpack-boilerplate",
"title": "Typescript Webpack Boilerplate",
"description": "A starter template/boilerplate built with TypeScript/JavaScript, Babel, Webpack 5, PostCSS, Jest, ESLint, and Stylelint.",
"main": "",
"url": "URL",
"target": "web",
"private": false,
"license": "MIT",
"version": "4.0.1",
"copyright": "2013",
"author": "Vijay Dubb",
"repository": {
"type": "git",
"url": "https://github.com/VD39/typescript-webpack-boilerplate.git"
},
"bugs": {
"url": "https://github.com/VD39/typescript-webpack-boilerplate/issues"
},
"scripts": {
"build": "webpack --progress --config webpack.config.babel.js",
"check-types": "tsc --project tsconfig.json --noEmit",
"dev": "yarn serve",
"lint": "yarn lint:all",
"lint:all": "yarn lint:scripts && yarn check-types && yarn lint:styles",
"lint:all:fix": "yarn lint:scripts:fix && yarn lint:styles:fix",
"lint:fix": "yarn lint:all:fix",
"lint:scripts": "eslint --ignore-path .gitignore **/*.{js,jsx,json,ts,tsx}",
"lint:scripts:fix": "yarn lint:scripts --fix",
"lint:styles": "stylelint --ignore-path .gitignore **/*.css",
"lint:styles:fix": "yarn lint:styles --fix",
"prepare": "husky install",
"serve": "cross-env NODE_ENV=development webpack serve --config webpack.config.babel.js",
"check-size": "webpack --config webpack.config.babel.js --profile --json > webpack-stats.json && webpack-bundle-analyzer webpack-stats.json",
"test": "jest",
"test:watch": "yarn test --watch"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "3",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-webpack-plugin": "^3.2.0",
"html-webpack-plugin": "^5.5.1",
"husky": ">=8",
"image-minimizer-webpack-plugin": "^3.8.2",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^10.0.0",
"imagemin-pngquant": "^9.0.2",
"imagemin-svgo": "^10.0.1",
"jest": "^28.1.3",
"lint-staged": ">=13",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.24",
"postcss-custom-media": "^9.1.2",
"postcss-import": "^15.1.0",
"postcss-loader": "^7.3.2",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^8.4.1",
"postcss-simple-vars": "^7.0.1",
"postcss-url": "^10.1.3",
"prettier": "^2.8.8",
"style-loader": "^3.3.3",
"stylelint": "^14.16.1",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-standard": "^29.0.0",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.9",
"ts-jest": "^28.0.8",
"ts-loader": "^9.4.3",
"typescript": "^5.0.4",
"webpack": "^5.85.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^v4.15.0",
"webpack-merge": "^5.9.0"
},
"keywords": [
"Babel",
"Boilerplate",
"ES6",
"ESLint",
"Jest",
"JavaScript",
"PostCSS",
"Stylelint",
"Template",
"TypeScript",
"Webpack 5"
],
"browserslist": [
"> 5%",
"not dead",
"not IE < 11"
]
}