-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.99 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.99 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
{
"name": "hello",
"version": "1.0.0",
"private": true,
"license": "MIT",
"directories": {},
"type": "module",
"scripts": {
"build": "rollup -c ./config/rollup.config.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"watch": "npm run build -- --watch"
},
"dependencies": {
"@crowdstrike/falcon-shoelace": "0.4.0",
"@crowdstrike/foundry-js": "0.21.0",
"@crowdstrike/tailwind-toucan-base": "5.0.0",
"@shoelace-style/shoelace": "2.20.1",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-router-dom": "7.13.0"
},
"devDependencies": {
"@babel/core": "7.28.4",
"@babel/preset-env": "7.28.3",
"@babel/preset-react": "7.27.1",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-commonjs": "28.0.6",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-replace": "6.0.2",
"@testing-library/jest-dom": "6.8.0",
"@testing-library/react": "16.3.0",
"@testing-library/user-event": "14.6.1",
"@web/rollup-plugin-html": "2.3.0",
"jest": "30.1.3",
"jest-environment-jsdom": "30.1.2",
"postcss": "8.5.6",
"rollup": "4.59.0",
"rollup-plugin-postcss": "4.0.2"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleNameMapper": {
"\\.(css|less|scss|sass)$": "identity-obj-proxy",
"@crowdstrike/foundry-js": "<rootDir>/src/__mocks__/@crowdstrike/foundry-js.js"
},
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/src/**/*.{test,spec}.{js,jsx}"
],
"transform": {
"^.+\\.(js|jsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@crowdstrike|@shoelace-style)/)"
]
},
"engines": {
"node": ">=22"
},
"overrides": {
"js-yaml": "^3.14.2",
"lodash": "4.17.23",
"svgo": "2.8.1",
"minimatch@3": "3.1.4",
"minimatch@9": "9.0.9"
}
}