-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.42 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
{
"version": "0.11.0",
"private": true,
"scripts": {
"dev": "yarn lerna run dev --parallel --stream",
"bootstrap": "lerna bootstrap && lerna link --force-local",
"clean": "lerna exec \"rm -rf node_modules\"",
"lint": "eslint . --cache --report-unused-disable-directives",
"lint:ci": "eslint . --report-unused-disable-directives",
"lint:fix": "eslint . --cache --fix",
"now-build": "yarn workspace docs build",
"prepublish": "lerna run prepublish",
"publish-ci": "lerna publish -y --canary --preid ci --dist-tag ci",
"publish-next": "lerna publish --npm-tag next --preid rc --force-publish=\"*\"",
"test": "yarn lint && yarn typescript",
"typescript": "lerna run typescript --parallel"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@typescript-eslint/eslint-plugin": "4.8.1",
"@typescript-eslint/parser": "4.8.1",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.6",
"babel-plugin-inline-react-svg": "1.1.0",
"eslint": "7.13.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "24.8.0",
"lerna": "3.16.4",
"prettier": "1.17.1",
"standard-version": "6.0.1"
},
"workspaces": [
"packages/*",
"docs"
],
"dependencies": {}
}