-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
94 lines (94 loc) · 3.4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "setup-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "npx browserslist@latest && webpack serve --open --mode development",
"start": "npx webpack serve --env NODE_ENV=local --env production --progress",
"build": "webpack --mode production",
"clean": "rm -rf dist",
"commit": "npx git-cz",
"coverage": "jest --coverage --testPathPattern=src/* --testResultsProcessor=jest-sonar-reporter",
"browserupdate-coverage": "npx browserslist@latest && npm run coverage",
"format": "npm run pretty -- --write",
"test": "jest --testPathPattern=src/*",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .jsx .",
"pretty": "prettier --ignore-path .gitignore \"**/*.+(js|json|md)\"",
"check-format": "npm run pretty -- --list-different",
"precommit": "npm-run-all --parallel lint pretty",
"validate": "npm-run-all --parallel check-format lint",
"play:run": "npx playwright test",
"e2e:test": "npx browserslist@latest && start-server-and-test start http://localhost:9000 play:run",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install"
},
"author": "Lenny Peters <@loonz806>",
"license": "MIT",
"dependencies": {
"@analytics/google-analytics": "^1.1.0",
"@axe-core/playwright": "^4.10.1",
"@percy/playwright": "^1.0.7",
"analytics": "^0.8.16",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.68.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@percy/cli": "^1.30.5",
"@playwright/test": "^1.49.1",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/builder-webpack5": "^7.4.6",
"@storybook/react": "^7.4.6",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.0.0",
"@types/node": "^22.10.2",
"autoprefixer": "^10.4.20",
"axe-core": "^4.10.2",
"babel-loader": "^9.2.1",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-storybook": "^0.11.1",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^14.0.1",
"npm-run-all": "^4.1.5",
"postcss-loader": "^7.3.3",
"postcss-preset-env": "^9.1.4",
"prettier": "^3.0.3",
"sass-loader": "^13.3.2",
"start-server-and-test": "^2.0.9",
"style-loader": "^3.3.3",
"wait-on": "^7.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}