-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.3 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
71
72
73
74
75
76
77
78
{
"name": "library-status",
"version": "1.0.0",
"description": "My webpack project",
"engines": {
"npm": ">=6"
},
"main": "index.js",
"browser": true,
"scripts": {
"start": "webpack serve --hot --mode development",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"lint": "npx eslint src/ --ext jsx --ext js",
"test": "jest",
"test:watch": "jest --watch",
"report-coverage": "node_modules/.bin/jest --coverage | codecov",
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "aeschylus",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.22.10",
"@babel/core": "^7.22.10",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.0.1",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"codecov": "^3.8.3",
"css-loader": "^6.7.3",
"eslint": "^8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.6.2",
"path": "^0.12.7",
"prettier": "^3.0.0",
"style-loader": "^3.3.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.13.1"
},
"dependencies": {
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react": "^18.0.0",
"react-aria-components": "^1.0.0-alpha.6",
"react-dom": "^18.0.0"
},
"jest": {
"roots": [
"./__tests__/",
"src/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**"
],
"testEnvironment": "jsdom"
}
}