-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3 KB
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
99
100
101
102
103
104
105
106
{
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "lerna run --stream build",
"clean": "lerna run --parallel clean",
"commit": "git-cz",
"develop": "lerna run --parallel --scope example-gatsby --include-dependencies develop",
"format": "prettier --ignore-path .gitignore --write .",
"postinstall": "lerna run --scope @atmc/* --stream build && lerna bootstrap",
"lint": "eslint --ignore-path .gitignore \"**/*.{ts,tsx,js,jsx}\"",
"prepublish": "lerna run --scope @atmc/* --stream build && lerna bootstrap",
"publish": "lerna publish from-git --yes",
"release": "dotenv -- lerna version --create-release github",
"size": "lerna run --scope @atmc/* --stream build && bundlesize --enable-github-checks",
"test": "jest",
"type-check": "lerna run type-check",
"version": "dotenv -- lerna version --no-push --no-git-tag-version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@netflix/tslint-config": "^1.0.1",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.18",
"@types/node": "^14.14.11",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"bundlesize2": "^0.0.26",
"commitizen": "^4.2.2",
"css-tree": "^1.1.2",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"dotenv-cli": "^4.0.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"happy-dom": "^1.18.2",
"husky": "^4.3.5",
"import-sort-style-eslint": "^6.0.0",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.3",
"mdn-data": "^2.0.14",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.8",
"rollup": "^2.34.2",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.2.0",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=10",
"npm": ">=6"
},
"bundlesize": [
{
"path": "./packages/core/dist/index.js",
"maxSize": "2 kB"
},
{
"path": "./packages/css/dist/index.js",
"maxSize": "300 B"
},
{
"path": "./packages/ssr/dist/inex.jsx",
"maxSize": "300 B"
}
]
}