-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
58
59
{
"name": "list",
"version": "1.0.0",
"description": "",
"main": "index.js",
"semi": false,
"overrides": [
{
"files": "./src/index.js",
"options": {
"semi": true
}
},
{
"files": [
"*.html",
"legacy/**/*.js"
],
"options": {
"tabWidth": 2
}
}
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --mode development --open --hot",
"build": "webpack --mode production",
"pretty": "prettier --check \"src/**/*.js\"",
"prettify": "prettier --write \"src/**/*.js\"",
"lint": "eslint ./src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yscream/ToDoList.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yscream/ToDoList/issues"
},
"homepage": "https://github.com/Yscream/ToDoList#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^8.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.4.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
},
"dependencies": {
"editorconfig": "^0.15.3",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0"
}
}