-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 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
{
"name": "@performant-software/react-components",
"description": "A library of shared React components",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build-all": "node --experimental-json-modules ./scripts/build.js",
"build-storybook": "yarn build-all && yarn --cwd packages/storybook build",
"flow": "flow",
"storybook": "yarn --cwd packages/storybook storybook",
"test": "jest",
"publish-release": "node --experimental-json-modules ./scripts/publish.js",
"publish-beta": "node --experimental-json-modules ./scripts/publish.js --tag beta"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/eslint-parser": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@eslint/compat": "^1.3.1",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.31.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^30.0.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^9.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-storybook": "^9.0.17",
"flow-bin": "^0.275.0",
"globals": "^16.3.0",
"jest": "^27.5.1",
"minimist": "^1.2.6",
"@stylistic/eslint-plugin": "^5.2.2",
"underscore": "^1.13.4"
},
"jest": {
"projects": [
{
"displayName": "@performant-software/shared",
"testMatch": [
"<rootDir>/packages/**/*.spec.js"
]
}
],
"testRegex": ".*\\.spec\\.js$",
"testEnvironment": "jest-environment-node",
"transform": {
"\\.[jt]sx?$": "babel-jest"
},
"verbose": true
},
"resolutions": {
"canvas": "link:./node_modules/.cache/null"
}
}