-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
98 lines (98 loc) · 2.98 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
{
"name": "codesandboxer-repo",
"version": "1.0.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/codesandbox/codesandboxer"
},
"license": "MIT",
"author": "Ben Conolly",
"workspaces": [
"packages/*"
],
"scripts": {
"all-tests": "pnpm run build && pnpm run test && pnpm run flow && pnpm run lint",
"build": "bolt ws run build",
"changeset": "changeset",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev:csb": "bolt w codesandboxer exec -- pnpm run build --watch",
"dev:rcsb": "bolt w react-codesandboxer exec -- pnpm run build --watch",
"lint": "pnpm run lint:eslint && pnpm run lint:prettier",
"lint:eslint": "pnpm run eslint .",
"lint:prettier": "prettier --list-different '**/*.js'",
"prep-release": "changeset bump",
"prettier": "prettier --write '**/*.js'",
"release": "pnpm run all-tests && changeset release",
"test": "pnpm run jest"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"form-data": "^2.5.1",
"isomorphic-unfetch": "^2.1.1",
"lodash.isequal": "^4.5.0",
"lodash.pick": "^4.4.0",
"lz-string": "^1.5.0",
"meow": "^9.0.0",
"p-memoize": "^2.1.0",
"path-browserify": "^1.0.1",
"pkg-dir": "^2.0.0",
"pkg-up": "^2.0.0",
"prop-types": "^15.8.1",
"query-string": "^6.14.1",
"react-node-resolver": "^1.0.1",
"react-select": "2.0.0-beta.6",
"resolve": "^1.22.8"
},
"devDependencies": {
"@atlaskit/build-releases": "^3.0.8",
"@changesets/cli": "^1.3.3",
"@types/mocha": "^2.2.48",
"@types/node": "^7.10.14",
"all-contributors-cli": "^6.26.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.6.0",
"babel-loader": "^7.1.5",
"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.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"bolt": "^0.23.6",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"emotion": "9.2.12",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.33.2",
"flow-bin": "^0.64.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.1.0",
"jest": "^23.6.0",
"jest-in-case": "^1.0.2",
"mini-css-extract-plugin": "^0.4.5",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"typescript": "^2.9.2",
"vscode": "^1.1.37",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.3"
},
"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"
},
"bolt": {
"workspaces": [
"packages/*"
]
}
}