generated from LizardByte/template-base
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 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
{
"name": "@lizardbyte/shared-web",
"repository": {
"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",
"files": [
"dist/",
"src/",
"tests/",
"LICENSE",
"README.md"
],
"dependencies": {
"@fortawesome/fontawesome-free": "6.6.0",
"bootstrap": "5.3.3"
},
"devDependencies": {
"@babel/core": "7.25.2",
"@babel/preset-env": "7.25.4",
"@codecov/webpack-plugin": "1.2.0",
"@eslint/js": "9.11.0",
"@jest/globals": "29.7.0",
"babel-loader": "9.2.1",
"cross-env": "7.0.3",
"css-loader": "7.1.2",
"eslint": "9.11.0",
"eslint-plugin-jest": "28.8.3",
"globals": "15.9.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-junit": "16.0.0",
"mini-css-extract-plugin": "2.9.1",
"node-fetch": "3.3.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.47",
"postcss-loader": "8.1.1",
"postcss-preset-env": "10.0.3",
"sass": "1.79.3",
"sass-loader": "16.0.2",
"webpack": "5.94.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.1.0"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"testEnvironment": "jsdom"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack",
"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 ."
}
}