forked from react-cosmos/react-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"docs"
],
"repository": "https://github.com/react-cosmos/react-cosmos",
"license": "MIT",
"type": "module",
"scripts": {
"prettify": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md,mdx}\"",
"check-types": "tsc",
"check-types:docs": "tsc -p docs/tsconfig.json",
"lint": "eslint \"**/*.{ts,tsx}\"",
"test": "vitest -c vitest.config.js",
"test:run": "vitest run -c vitest.config.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"link-entries": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./scripts/linkEntries.ts",
"src": "npm run link-entries src",
"dist": "npm run link-entries dist",
"build:clear": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./scripts/clearBuild.ts",
"build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./scripts/build.ts",
"demo:build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./scripts/buildDemo.ts",
"release:check": "npm run build:clear && npm run build && npm run src && npm run lint && npm run dist && npm run test:run",
"release": "npm run release:check && lerna publish -m \"[release] %s\"",
"release:next": "npm run release:check && lerna publish --dist-tag=next --exact -m \"[release] %s\""
},
"devDependencies": {
"@playwright/test": "1.49.1",
"@skidding/async-retry": "4.0.0",
"@testing-library/react": "15.0.7",
"@types/express": "4.17.21",
"@types/fuzzaldrin-plus": "0.6.5",
"@types/isomorphic-fetch": "0.0.39",
"@types/lodash-es": "4.17.12",
"@types/micromatch": "4.0.9",
"@types/node": "20.17.10",
"@types/pem": "1.14.4",
"@types/react": "18.3.16",
"@types/react-dom": "18.3.5",
"@types/react-is": "18.3.1",
"@types/react-native": "0.73.0",
"@types/react-test-renderer": "18.3.1",
"@types/styled-components": "5.1.34",
"@types/webpack-hot-middleware": "2.25.9",
"@types/ws": "8.5.13",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/coverage-v8": "2.1.8",
"async-until": "4.0.1",
"chalk": "5.3.0",
"create-react-class": "15.7.0",
"css-loader": "6.11.0",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"glob": "10.4.5",
"html-webpack-plugin": "5.6.3",
"http-server": "14.1.1",
"isomorphic-fetch": "3.0.0",
"jsdom": "20.0.3",
"lerna": "8.1.9",
"localforage": "1.10.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "3.2.4",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-is": "18.3.1",
"react-test-renderer": "18.3.1",
"source-map-loader": "4.0.2",
"style-loader": "3.3.4",
"styled-components": "5.3.11",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"vite": "5.4.11",
"vitest": "2.1.8",
"wait-on": "7.2.0",
"webpack": "5.97.1",
"webpack-cli": "5.1.4",
"yargs": "17.7.2"
},
"optionalDependencies": {
"@nx/nx-linux-x64-gnu": "18.3.5",
"@nx/nx-win32-x64-msvc": "18.3.5"
}
}