forked from codesandbox/codesandboxer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.86 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
{
"name": "codesandboxer-repo",
"version": "1.0.0",
"description": "A simple react component to help easily deploy an example to codesandbox",
"scripts": {
"test": "yarn jest",
"build": "bolt ws run build",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "yarn eslint .",
"lint:prettier": "prettier --list-different \"**/*.js\"",
"prettier": "prettier --write \"**/*.js\"",
"all-tests": "yarn build && yarn test && yarn flow && yarn lint",
"dev:csb": "bolt w codesandboxer exec -- yarn build --watch",
"dev:rcsb": "bolt w react-codesandboxer exec -- yarn build --watch",
"changeset": "yarn build-releases changeset",
"prep-release": "yarn build-releases version",
"release": "yarn all-tests && yarn build-releases publish"
},
"keywords": [
"codesandbox",
"react",
"react-component",
"documentation",
"examples"
],
"author": "Ben Conolly",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"emotion": "9.2.12",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.64.0",
"jest": "^23.6.0",
"jest-in-case": "^1.0.2",
"prettier": "^1.10.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0-rc || ^16.0"
},
"dependencies": {
"@atlaskit/build-releases": "^3.0.2",
"babel-jest": "^23.6.0",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bolt": "^0.20.5",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"form-data": "^2.3.2",
"html-webpack-plugin": "^3.2.0",
"isomorphic-unfetch": "^2.0.0",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"lz-string": "^1.4.4",
"meow": "^5.0.0",
"mini-css-extract-plugin": "^0.4.0",
"p-memoize": "^2.0.0",
"path-browserify": "^1.0.0",
"pkg-dir": "^2.0.0",
"pkg-up": "^2.0.0",
"prop-types": "^15.6.1",
"query-string": "^6.1.0",
"react-node-resolver": "^1.0.1",
"react-select": "2.0.0-beta.6",
"resolve": "^1.7.1",
"webpack": "^4.9.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.4"
},
"repository": "https://github.com/codesandbox/codesandboxer.git",
"bolt": {
"workspaces": [
"packages/*"
]
}
}