forked from react-cosmos/react-cosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 3.19 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"website"
],
"repository": "https://github.com/react-cosmos/react-cosmos",
"license": "MIT",
"type": "module",
"scripts": {
"prettify": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"check-types": "tsc",
"check-types:cypress": "yarn tsc -p cypress/tsconfig.json",
"lint": "eslint \"**/*.{ts,tsx}\"",
"test:unit": "jest --config .jest/config.cjs",
"test:watch": "yarn test:unit --watch",
"test:coverage": "yarn test:unit --coverage",
"test:cypress": "cypress run --config-file cypress/cypress.config.ts --record false",
"link-entries": "ts-node --esm ./scripts/linkEntries.ts",
"src": "yarn link-entries src",
"dist": "yarn link-entries dist",
"build:clear": "ts-node --esm ./scripts/clearBuild.ts",
"build": "ts-node --esm ./scripts/build.ts",
"website:build": "ts-node --esm ./scripts/buildWebsite.ts",
"website:serve": "http-server -p 5001 ./website/dist",
"release:check": "yarn build:clear && yarn build && yarn src && yarn lint && yarn dist && yarn test:unit",
"release": "yarn release:check && yarn lerna publish -m \"[skip ci] %s\"",
"release:next": "yarn release:check && yarn lerna publish --dist-tag=next --exact -m \"[skip ci] %s\""
},
"devDependencies": {
"@skidding/async-retry": "^4.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/express": "^4.17.17",
"@types/fuzzaldrin-plus": "^0.6.2",
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.5.1",
"@types/lodash-es": "^4.17.7",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.16.3",
"@types/pem": "^1.9.6",
"@types/react": "^18.2.4",
"@types/react-dom": "^18.2.3",
"@types/react-is": "^18.2.0",
"@types/react-native": "^0.71.6",
"@types/react-test-renderer": "^18.0.0",
"@types/styled-components": "^5.1.26",
"@types/webpack-hot-middleware": "^2.25.6",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"async-until": "^4.0.1",
"chalk": "5.2.0",
"create-react-class": "^15.7.0",
"css-loader": "^6.7.3",
"cypress": "12.11.0",
"delay": "^5.0.0",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^10.2.2",
"html-webpack-plugin": "^5.5.1",
"http-server": "^14.1.1",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-styled-components": "^7.1.1",
"lerna": "^6.6.1",
"localforage": "^1.10.0",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"react-test-renderer": "18.2.0",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.2",
"styled-components": "^5.3.10",
"ts-jest": "^29.1.0",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "5.0.4",
"vite": "^4.3.4",
"webpack": "^5.82.0",
"webpack-cli": "^5.0.2",
"yargs": "^17.7.2"
}
}