-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.7 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
{
"name": "bibliothekai",
"description": "My amazing LWC app",
"version": "0.0.1",
"author": "David Reed",
"bugs": "https://github.com/davidmreed/bibliothekai/issues",
"devDependencies": {
"@lwc/jest-preset": "^11.2.2",
"copy-webpack-plugin": "^10.2.4",
"error-overlay-webpack-plugin": "^1.1.0",
"eslint": "^8.9.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jest": "^26.6.3",
"lint-staged": "^12.3.4",
"lwc-webpack-plugin": "^2.1.0",
"prettier": "^2.5.1",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-manifest-plugin": "^4.1.1"
},
"homepage": "https://github.com/davidmreed/bibliothekai",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"keywords": ["lwc"],
"license": "MIT",
"lint-staged": {
"**/*.{css,html,js,json,md,ts,yaml,yml}": ["prettier --write"],
"./src/**/*.js": ["eslint"],
"**/*.py": ["black", "flake8"]
},
"repository": "https://github.com/davidmreed/bibliothekai",
"scripts": {
"build": "NODE_ENV=production webpack",
"build:development": "NODE_ENV=development webpack",
"lint": "eslint ./src/**/*.js",
"prettier": "prettier --write \"**/*.{css,html,js,json,md,ts,yaml,yml}\"",
"prettier:verify": "prettier --list-different \"**/*.{css,html,js,json,md,ts,yaml,yml}\"",
"test:unit": "jest",
"test:unit:coverage": "jest --coverage",
"test:unit:debug": "jest --debug",
"test:unit:watch": "jest --watch",
"watch": "NODE_ENV=development webpack-dev-server"
}
}