-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 KB
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
{
"name": "live-reload-vanilla-website-template",
"version": "1.0.0",
"description": "Template to build a website without a front-end framework. Includes transpilation of ES6+ JavaScript and Sass support",
"main": "main.js",
"author": "Esau Silva",
"license": "MIT",
"scripts": {
"dev:assets": "webpack --watch",
"dev": "live-server --open=./public/ --host=localhost --watch=./public/",
"build": "NODE_ENV=production webpack",
"prepare": "husky"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"concurrently": "^7.6.0",
"css-loader": "^6.7.3",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.5",
"live-server": "^1.2.2",
"mini-css-extract-plugin": "^2.7.2",
"node-sass": "^7.0.0",
"postcss": "^8.4.20",
"postcss-loader": "^7.0.2",
"postcss-preset-env": "^7.8.0",
"sass-loader": "^13.2.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/esausilva/live-reload-vanilla-website-template.git"
},
"bugs": {
"url": "https://github.com/esausilva/live-reload-vanilla-website-template/issues"
},
"keywords": [
"JavaScript",
"Webpack",
"ES6+",
"live reload",
"Sass"
],
"dependencies": {
"moment": "^2.30.1",
"moment-timer": "^1.3.0"
}
}