-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
114 lines (114 loc) · 3.7 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
114
{
"name": "typescript-webpack-boilerplate",
"version": "5.0.0",
"private": false,
"description": "A starter template/boilerplate built with TypeScript/JavaScript, Babel, Webpack 5, PostCSS, Jest, ESLint, and Stylelint.",
"keywords": [
"Babel",
"Boilerplate",
"ES6",
"ESLint",
"Jest",
"JavaScript",
"PostCSS",
"Stylelint",
"Template",
"TypeScript",
"Webpack 5"
],
"bugs": {
"url": "https://github.com/VD39/typescript-webpack-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/VD39/typescript-webpack-boilerplate.git"
},
"license": "MIT",
"author": "Vijay Dubb",
"type": "module",
"main": "",
"scripts": {
"build": "webpack --progress --config webpack.config.babel.js",
"check-size": "webpack --config webpack.config.babel.js --profile --json > webpack-stats.json && webpack-bundle-analyzer webpack-stats.json",
"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,cjs,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",
"test": "jest",
"test:watch": "yarn test --watch"
},
"browserslist": [
"defaults"
],
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.23.7",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.35.1",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.6.0",
"husky": "^8.0.3",
"image-minimizer-webpack-plugin": "^3.8.3",
"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": "^29.7.0",
"lint-staged": "^15.2.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.33",
"postcss-custom-media": "^10.0.0",
"postcss-import": "^15.1.0",
"postcss-loader": "^8.1.0",
"postcss-mixins": "^9.0.4",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.3.0",
"postcss-simple-vars": "^7.0.1",
"postcss-url": "^10.1.3",
"prettier": "^3.1.0",
"style-loader": "^3.3.4",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-standard": "^34.0.0",
"stylelint-prettier": "^4.1.0",
"stylelint-webpack-plugin": "^4.1.1",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^v4.15.1",
"webpack-merge": "^5.10.0"
},
"copyright": "2013",
"target": "web",
"title": "Typescript Webpack Boilerplate",
"url": "URL"
}