-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.1 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
{
"name": "smooth-carousel-dots",
"private": true,
"description": "Custom Carousel Dots component to plug in to any your Carousels.",
"license": "MIT",
"author": "Timeless <hello@timeless.co>",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build --no-private --stream --parallel",
"build-storybook": "build-storybook -c .storybook",
"clean": "lerna clean --yes && rm -rf node_modules",
"commit": "gacp --no-push",
"format": "prettier --write \"./**/*.{js,jsx}\"",
"lerna-publish": "lerna publish from-git",
"lerna-version": "lerna version",
"lint": "eslint . --ext .js,.jsx --fix",
"lint:package": "sort-package-json",
"prestart": "yarn && yarn bootstrap",
"start": "yarn build",
"storybook": "start-storybook"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@storybook/react": "^6.0.0-rc.3",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"conventional-changelog-metahub": "^4.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"gacp": "^2.10.0",
"husky": "^4.2.5",
"lerna": "^3.22.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sort-package-json": "^1.44.0"
}
}