This repository has been archived by the owner on Jun 20, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
74 lines (74 loc) Β· 2.64 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "lerna run build",
"dev": "WATCH_MODE=true lerna run --parallel build -- --watch",
"update-website": "cp -r ./packages/core-sc/dist ./website/node_modules/smooth-ui-sc-next && cp -r ./packages/core-em/dist ./website/node_modules/smooth-ui-em-next",
"ci": "yarn lint && yarn test && yarn build && bundlesize && yarn tsc:check || true",
"format": "prettier --write \"**/*.{js,json,md,mdx}\"",
"lint": "eslint .",
"release": "lerna publish --conventional-commits --force-publish=* && conventional-github-releaser --preset angular",
"pre-release": "lerna publish prerelease --force-publish=* && conventional-github-releaser --preset angular",
"test": "jest"
},
"bundlesize": [
{
"path": "./packages/core-em/dist/smooth-ui-core-em.min.js",
"maxSize": "25 kB"
},
{
"path": "./packages/core-sc/dist/smooth-ui-core-sc.min.js",
"maxSize": "23 kB"
}
],
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@emotion/core": "^10.0.22",
"@emotion/styled": "^10.0.23",
"@xstyled/emotion": "^1.15.0",
"@xstyled/styled-components": "^1.15.0",
"@xstyled/system": "^1.14.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"babel-plugin-emotion": "^10.0.23",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-rename-import": "^2.3.0",
"bundlesize": "^0.18.0",
"conventional-github-releaser": "^3.1.3",
"cross-env": "^6.0.3",
"emotion-theming": "^10.0.19",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"jest": "^24.8.0",
"lerna": "^3.19.0",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"reakit": "^1.0.0-beta.12",
"rollup": "^1.27.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-size-snapshot": "^0.10.0",
"rollup-plugin-terser": "^5.1.2",
"shx": "^0.3.2",
"styled-components": "^4.4.1"
}
}