-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.17 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.17 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
{
"name": "compose",
"private": true,
"dependencies": {
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@hotwired/turbo-rails": "^7.3.0",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@rails/webpacker": "5.4.4",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-katex": "^3.0.1",
"ts-loader": "^9.4.1",
"turbolinks": "^5.2.0",
"typescript": "*",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "esbuild app/javascript/application.tsx --bundle --sourcemap --outdir=app/assets/builds",
"lint": "eslint app/javascript/**/*.ts[x]",
"test": "jest"
},
"jest": {
"testPathIgnorePatterns": [
"node_modules/",
"config/webpack/test.js",
"vendor/bundle/ruby"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
]
},
"version": "0.1.0",
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-logical-assignment-operators": "^7.22.5",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.1.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.38.1",
"babel-jest": "^29.2.0",
"eslint": "^8.0.1",
"eslint-config-preact": "^1.3.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.0",
"istanbul-reports": "^3.1.5",
"jest": "^29.2.0",
"ts-jest": "^29.0.3",
"webpack-dev-server": "^3"
}
}