-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.49 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"build:doc": "doctoc packages/smooth/README.md",
"dev": "WATCH_MODE=true lerna run build --parallel -- --watch",
"format": "prettier --write \"**/*.{js,json,md}\"",
"lint": "eslint . --ignore-pattern \"examples/**/*.js\"",
"prerelease": "lerna publish prerelease && conventional-github-releaser --preset angular",
"release": "lerna publish --conventional-commits && conventional-github-releaser --preset angular",
"test": "jest"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@loadable/babel-plugin": "^5.10.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"conventional-github-releaser": "^3.1.3",
"cross-env": "^5.2.0",
"doctoc": "^1.4.0",
"eslint": "^6.2.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-smooth": "^2.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.9.0",
"lerna": "^3.16.4",
"prettier": "^1.17.1",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"shx": "^0.3.2"
}
}