-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "typescript-webpack-starter",
"version": "1.0.0",
"description": "A simple seed for projects based on TypeScript and webpack",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/ts --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LordKa0S/typescript-webpack-starter.git"
},
"keywords": [],
"author": "Kaustubh Badrike",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/LordKa0S/typescript-webpack-starter/issues"
},
"homepage": "https://github.com/LordKa0S/typescript-webpack-starter#readme",
"devDependencies": {
"@types/lodash": "^4.14.189",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.28.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.0",
"sass": "^1.56.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"lodash": "^4.17.21"
}
}