-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.94 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.94 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
{
"dependencies": {
"@fortawesome/fontawesome-free": "6.7.2",
"@popperjs/core": "2.11.8",
"bootstrap": "4.6.2",
"esbuild": "0.28.0",
"i18n-js": "^4.5.3",
"jquery": "3.7.1",
"jquery-ujs": "1.2.3",
"popper.js": "1.16.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "1.99.0",
"set-value": "4.1.0",
"stupid-table-plugin": "1.1.3",
"webpack": "5.106.2",
"webpack-cli": "6.0.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"babel-jest": "^29.7.0",
"eslint": "9.32.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.32.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^19.2.5",
"webpack-dev-server": "5.2.3"
},
"engines": {
"node": "^24.14.1"
},
"license": "MIT",
"resolutions": {
"dot-prop": "^8.0.0",
"eslint-utils": "^3.0.0",
"kind-of": "^6.0.3",
"lodash": "^4.17.12",
"node-forge": "^1.0.0",
"serialize-javascript": "^6.0.0",
"yargs-parser": "^21.0.0",
"popper.js": "1.16.1",
"webpack": "5.106.2",
"y18n": "^5.0.0",
"is-svg": "^5.0.0"
},
"packageManager": "yarn@4.12.0",
"scripts": {
"build": "./node_modules/esbuild/bin/esbuild ./app/javascript/*.* --bundle --sourcemap --outdir=app/assets/builds",
"build:css": "sass ./app/assets/stylesheets/application.bootstrap.scss ./app/assets/builds/application.css --no-source-map --load-path=node_modules",
"test": "jest"
},
"browserslist": [
"defaults"
],
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"vendor/"
]
}
}