-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.68 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.68 KB
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
{
"name": "project-name-param",
"private": true,
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"lint": "prettier app/javascript --check && eslint app/javascript && stylelint 'app/javascript/**/*.scss' && markdownlint-cli2 './**/*.md'",
"lint-fix": "prettier app/javascript --write; eslint --fix app/javascript; stylelint --fix 'app/javascript/**/*.scss' && markdownlint-cli2 --fix './**/*.md'"
},
"dependencies": {
"@abtion-oss/design-system-colors": "^1.1.2",
"@heroicons/react": "^2.2.0",
"@rails/actioncable": "^8.1.200",
"@rails/activestorage": "^8.0.201",
"@rails/ujs": "^7.1.3",
"autoprefixer": "^10.4.21",
"classnames": "^2.5.1",
"compression-webpack-plugin": "^12.0.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^8.0.0",
"dot-prop": "^10.0.0",
"mini-css-extract-plugin": "^2.10.0",
"node-sass-glob-importer": "^5.3.3",
"postcss-import": "^16.1.0",
"postcss-loader": "^7.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.97.3",
"sass-loader": "^16.0.3",
"shakapacker": "9.7.0",
"style-loader": "^4.0.0",
"swc-loader": "^0.2.7",
"tailwindcss": "^3.4.7",
"terser-webpack-plugin": "^5.3.16",
"typescript": "^4.8.4",
"webpack": "^5.100.2",
"webpack-assets-manifest": "^6.2.1",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpack-sources": "^3.3.4"
},
"packageManager": "npm@11.10.0",
"engines": {
"node": ">=24.14.1",
"npm": ">=11.10.0"
},
"version": "0.1.1",
"browserslist": [
"defaults"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.2",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@types/node": "~18.14.0",
"@types/rails__activestorage": "^8.0.1",
"@types/rails__ujs": "^6.0.4",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.22",
"@types/testing-library__jest-dom": "^6.0.0",
"@types/webpack-env": "^1.18.8",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.42.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest-dom": "5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"markdownlint-cli2": "^0.21.0",
"postcss": "^8.4.33",
"prettier": "^3.6.0",
"stylelint": "^16.23.1",
"stylelint-config-sass-guidelines": "^12.1.0",
"webpack-dev-server": "^5.2.3"
},
"peerDependencies": {
"postcss": "^8.4.33"
},
"overrides": {
"postcss": "^8.4.33"
}
}