-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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": "frontend-dev-boilerplate",
"version": "1.0.0",
"description": "A frontend development boilerplate with Webpack 5",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --config=webpack.dev.js",
"build": "webpack --config=webpack.prod.js",
"lint": "npx eslint 'src/**/*.ts'",
"prettify": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopher-adolphe/frontend-dev-boilerplate.git"
},
"keywords": [
"frontend development boilerplate",
"webpack 5",
"html 5",
"sass",
"typescript"
],
"author": "Christopher Adolphe",
"license": "MIT",
"devDependencies": {
"@types/leaflet": "^1.7.9",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"autoprefixer": "^10.4.2",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"dotenv-webpack": "^7.1.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"html-webpack-partials-plugin": "^0.8.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"postcss-loader": "^6.2.1",
"prettier": "2.5.1",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.6",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"gsap": "^3.9.1",
"leaflet": "^1.8.0"
}
}