-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@eckode/webpack",
"version": "0.2.0",
"description": "JavaScript with TypeScript. CSS with SCSS. Built with Webpack. Serving with Webpack-Dev-Server and HMR.",
"keywords": [
"webpack",
"typescript",
"babel",
"SASS",
"CSS",
"SCSS",
"hmr",
"JavaScript",
"boilerplate"
],
"author": "Jared Rethman <jaredrethman@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eckode/webpack.git"
},
"bugs": {
"url": "https://github.com/eckode/webpack/issues"
},
"homepage": "https://github.com/eckode/webpack",
"scripts": {
"webpack": "tsc --build tsconfig-webpack.json",
"dev": "webpack serve --mode=development --config=webpack/webpack.dev.mjs",
"build": "webpack --config=webpack/webpack.prod.mjs",
"start:prod": "yarn build && node express.js",
"lint": "eslint src --ext .ts",
"test:jest": "jest --coverage --config=jest.ts"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"files": [
"webpack",
"package.json",
".eslintrc.js",
"prettier.js",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@eckode/cli": "~0.0.5",
"@types/jest": "^29.5.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.13",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"babel-loader": "^9.1.2",
"chalk": "^5.2.0",
"css-loader": "^6.7.3",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"express": "^4.18.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.23",
"postcss-loader": "^7.2.4",
"prettier": "^2.8.7",
"resolve-bin": "^1.0.1",
"sass": "^1.62.0",
"sass-loader": "^13.2.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"devDependencies": {}
}