This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.8 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"repository": "https://github.com/react-cosmos/react-cosmos-classic",
"license": "MIT",
"scripts": {
"install-react": "yarn remove react react-dom && yarn add",
"install-react:0.14": "yarn install-react -- react@^0.14.9 react-dom@^0.14.9",
"install-react:15": "yarn install-react -- react@^15.5.4 react-dom@^15.5.4",
"precommit": "yarn check-babel-runtime && yarn dist && lint-staged",
"prettify": "prettier --write \"{{packages/*/src,examples,cypress,scripts}/**/,}*.{js,jsx,css,less,md}\"",
"lint": "eslint \"**/*.js\"",
"test:unit": "jest --config .jest/config.js",
"test:watch": "yarn test:unit --watch",
"test": "yarn flow && yarn lint && yarn test:unit --coverage",
"test:e2e": "cypress run --record false",
"start": "babel-node ./packages/react-cosmos-classic/bin/cosmos-classic --config examples/local-state/cosmos.config.js",
"start:playground": "babel-node ./packages/react-cosmos-classic/bin/cosmos-classic --config packages/react-cosmos-playground/cosmos.config.js",
"build:clear": "babel-node ./scripts/clearBuild.js",
"build": "babel-node ./scripts/build.js",
"link-entries": "babel-node ./scripts/linkEntries.js",
"check-babel-runtime": "babel-node ./scripts/checkBabelRuntime.js",
"src": "yarn link-entries src",
"dist": "yarn link-entries dist",
"release:check": "yarn build:clear && yarn build && yarn link-entries src && yarn flow && yarn lint && yarn link-entries dist && yarn test:unit",
"release:lerna": "lerna publish --registry=https://registry.npmjs.org/",
"release": "yarn release:check && yarn release:lerna",
"release:next": "yarn release:check && yarn release:lerna --dist-tag=next"
},
"lint-staged": {
"*.{js,jsx,css,less}": [
"prettier --single-quote --write",
"git add"
]
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/runtime-corejs2": "^7.3.1",
"@react-mock/state": "^0.1.8",
"@skidding/async-retry": "^2.0.0",
"after-pending-promises": "^0.0.1",
"after-pending-timers": "^0.0.1",
"async-until": "^2.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.5",
"chalk": "^2.4.2",
"child-process-promise": "^2.2.0",
"codecov": "^3.1.0",
"cpy": "^7.0.1",
"create-react-class": "^15.6.3",
"css-loader": "^2.1.0",
"cypress": "^3.8.1",
"delay": "^4.1.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.9.1",
"eslint": "^5.13.0",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-react": "^7.12.4",
"eventsource": "^1.0.7",
"file-loader": "^2.0.0",
"flow-bin": "^0.97.0",
"flow-typed": "^2.5.2",
"glob": "^7.1.3",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jest-dom": "^3.5.0",
"lerna": "^3.10.8",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lint-staged": "^8.1.3",
"prettier": "1.16.4",
"prop-types": "^15.6.2",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-native": "^0.55.4",
"react-test-renderer": "^16.8.4",
"react-testing-library": "^5.5.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.3",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.3",
"webpack-cli": "^3.2.3",
"yargs": "^12.0.5"
}
}