This repository has been archived by the owner on Jul 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
54
55
56
57
{
"name": "todo",
"version": "1.0.0",
"description": "Simple JavaScript TODO app",
"main": "task-list.js",
"dependencies": {
"clean-webpack-plugin": "^4.0.0-alpha.0",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.0",
"favicons-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.2.2",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/eslint-parser": "^7.15.8",
"@babel/preset-env": "^7.14.2",
"copy-webpack-plugin": "^10.2.0",
"doiuse": "^4.4.1",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"favicons": "^6.2.2",
"html-loader": "^3.0.0",
"imagemin-webp": "^7.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^27.1.0",
"prettier": "^2.4.1",
"script-loader": "^0.7.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.2",
"webpack-dev-server": "^4.1.0"
},
"scripts": {
"format": "prettier --write 'src/**/*.js'",
"lint": "eslint src --ext .js",
"test": "jest --coverage --collectCoverageFrom='src/**/{!(app.js),}.js'",
"dev": "webpack serve --mode development --open",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidlag0/todo.git"
},
"author": "David Laganière",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/davidlag0/todo/issues"
},
"homepage": "https://github.com/davidlag0/todo#readme"
}