-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"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.25.7",
"@babel/preset-env": "^7.25.7",
"babel-jest": "^29.7.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"eslint": "^7.1.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-flowtype": "^5.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-storybook": "^0.5.7",
"flow-bin": "^0.123.0",
"jest": "^27.5.1",
"minimist": "^1.2.6",
"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
}
}