-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
{
"name": "viennetta",
"description": "Webpack-TypeScript-Babel-Sass boilerplate",
"version": "0.0.1",
"license": "MIT",
"engines": {
"node": ">=14",
"pnpm": ">=6.17",
"yarn": ">=1.22"
},
"scripts": {
"clean": "rm -rf dist",
"dev": "NODE_ENV=development webpack serve --config ./config/webpack/webpack.config.dev.ts",
"prebuild": "pnpm clean",
"build": "pnpm prebuild && NODE_ENV=production webpack --config ./config/webpack/webpack.config.prod.ts",
"lint:commit": "commitlint --edit $1",
"lint:ts": "eslint . --ext .ts",
"lint": "pnpm lint:ts"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/mini-css-extract-plugin": "^2.3.0",
"@types/sass": "^1.16.1",
"@types/webpack": "^5.28.0",
"@types/webpack-dev-server": "^4.3.1",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^6.4.0",
"eslint": "^8.0.1",
"html-webpack-plugin": "^5.4.0",
"husky": "^7.0.2",
"mini-css-extract-plugin": "^2.4.2",
"postcss": "^8.3.9",
"postcss-loader": "^6.2.0",
"postcss-preset-env": "^6.7.0",
"sass": "^1.43.2",
"sass-loader": "^12.2.0",
"style-loader": "^3.3.0",
"tailwindcss": "^2.2.17",
"ts-loader": "^9.2.6",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1",
"webpack-merge": "^5.8.0"
}
}