-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "todo-js",
"version": "1.0.0",
"description": "ToDo APP Created with Vanilla JavaScript",
"author": "Israel Laguan <Israel-Laguan>",
"contributors": [
"Aivaras Prudnikovas <ivarprudnikov> - Webpack Configuration"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"preview": "npm run build && http-server dist",
"test": "standard"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-loader": "^8.3.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^6.7.3",
"file-loader": "^6.2.0",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"http-server": "^14.1.1",
"mini-css-extract-plugin": "^2.7.2",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"standard": "^17.1.2",
"style-loader": "^1.3.0",
"terser-webpack-plugin": "^5.3.11",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.2.1"
},
"standard": {
"env": [
"node",
"es6"
]
},
"engines": {
"node": ">= 10.0.0"
},
"directories": {
"doc": "doc"
},
"homepage": "https://github.com/fabricio-garcia/todo-js#readme",
"bugs": {
"url": "https://github.com/fabricio-garcia/todo-js/issues"
},
"license": "MIT",
"private": true,
"keywords": [
"webpack",
"static",
"starter",
"html",
"pages"
],
"browserslist": [
"last 2 version",
"> 1%",
"maintained node versions",
"not dead"
]
}