generated from LizardByte/template-base
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@lizardbyte/shared-web",
"repository": {
"type": "git",
"url": "git+https://github.com/LizardByte/shared-web.git"
},
"version": "0.0.0",
"description": "Shared web assets for LizardByte projects",
"license": "AGPL-3.0-only",
"funding": "https://app.lizardbyte.dev",
"homepage": "https://github.com/LizardByte/shared-web#readme",
"bugs": {
"url": "https://github.com/LizardByte/shared-web/issues"
},
"files": [
"dist/",
"src/",
"tests/",
"LICENSE",
"README.md"
],
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"bootstrap": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/preset-env": "7.26.9",
"@codecov/webpack-plugin": "1.9.0",
"@eslint/js": "9.23.0",
"@jest/globals": "29.7.0",
"babel-loader": "10.0.0",
"clean-jsdoc-theme": "4.3.0",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"eslint": "9.23.0",
"eslint-plugin-jest": "28.11.0",
"globals": "16.0.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"jsdoc": "4.0.4",
"mini-css-extract-plugin": "2.9.2",
"node-fetch": "3.3.2",
"npm-run-all": "4.1.5",
"postcss": "8.5.3",
"postcss-loader": "8.1.1",
"postcss-preset-env": "10.1.5",
"sass": "1.86.0",
"sass-loader": "16.0.5",
"webpack": "5.98.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testEnvironment": "jsdom"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"generate-docs": "jsdoc --configure jsdoc.json --verbose",
"start": "webpack serve",
"test": "npm-run-all test:unit test:report test:lint",
"test:unit": "jest --coverage",
"test:report": "jest --reporters=jest-junit",
"test:lint": "eslint ."
}
}