-
Notifications
You must be signed in to change notification settings - Fork 245
/
package.json
69 lines (69 loc) · 1.9 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
{
"dependencies": {
"@fortawesome/fontawesome-free": "6.6.0",
"@popperjs/core": "2.11.8",
"bootstrap": "4.6.2",
"esbuild": "0.24.0",
"i18n-js": "^4.5.0",
"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.80.4",
"set-value": "4.1.0",
"stupid-table-plugin": "1.1.3",
"webpack": "5.95.0",
"webpack-cli": "5.1.4"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"babel-jest": "^29.7.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.31.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react-test-renderer": "^18.3.1",
"webpack-dev-server": "5.1.0"
},
"engines": {
"node": ">=20.10.0"
},
"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.95.0",
"y18n": "^5.0.0",
"is-svg": "^5.0.0"
},
"packageManager": "[email protected]",
"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"
},
"jest": {
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/jest-setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"vendor/"
]
}
}