forked from airburst/react-in-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "./bin/dev",
"test": "jest",
"lint": "eslint --ext .ts,.tsx src/**/*.{ts,tsx}",
"check-types": "tsc --noEmit --emitDeclarationOnly false --pretty"
},
"dependencies": {
"@airbrake/browser": "^2.1.8",
"@babel/core": "7",
"@babel/plugin-transform-runtime": "7",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@babel/runtime": "7",
"@simplybusiness/icons": "^3.12.2",
"@simplybusiness/mobius": "^3.12.2",
"@simplybusiness/theme-sb": "^3.12.2",
"@snowplow/browser-tracker": "^3.16.0",
"@types/babel__core": "7",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.7",
"@types/react": "^18.2.30",
"@types/react-dom": "^18.2.14",
"@types/webpack": "5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loading-skeleton": "^3.3.1",
"react-on-rails": "13.4.0",
"typescript": "^5.2.2",
"webpack": "5"
},
"devDependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.11",
"@react-types/shared": "^3.21.0",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@total-typescript/shoehorn": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"babel-jest": "^29.7.0",
"babel-loader": "8",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"compression-webpack-plugin": "9",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"react-refresh": "^0.14.0",
"sass": "^1.69.4",
"sass-loader": "^13.3.2",
"shakapacker": "7.1.0",
"style-loader": "^3.3.3",
"terser-webpack-plugin": "5",
"ts-jest": "^29.1.1",
"webpack-assets-manifest": "5",
"webpack-cli": "4",
"webpack-dev-server": "4",
"webpack-merge": "5",
"whatwg-fetch": "^3.6.19"
},
"babel": {
"presets": [
"./node_modules/shakapacker/package/babel/preset.js"
]
},
"browserslist": [
"defaults"
]
}