-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "webflow-webpack",
"version": "1.0.0",
"description": "Basic template for Webpack with Webflow",
"main": "index.js",
"keywords": [
"typescript",
"webpack",
"webflow",
"prettier-eslint"
],
"author": "Armand Sallé",
"license": "ISC",
"scripts": {
"dev": "webpack serve --mode development",
"clean": "rimraf -rf dist",
"build": "webpack --mode production",
"lint": "eslint ./src --ext .ts,.tsx --cache --fix --quiet",
"prepare": "husky install"
},
"dependencies": {
"jquery": "^3.6.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/jquery": "^3.5.6",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"babel-loader": "^8.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^7.0.2",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.2.0"
}
}