-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.54 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
75
76
77
78
79
{
"name": "bulba-web-components",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"test": "jest",
"build": "lerna run build",
"watch:template": "ENTRY=template rollup -c rollup.serve.config.js -w",
"watch:cdn:template": "CDN=true ENTRY=template rollup -c rollup.serve.config.js -w",
"watch:jsx": "ENTRY=jsx rollup -c rollup.serve.config.js -w",
"watch:cdn:jsx": "CDN=true ENTRY=jsx rollup -c rollup.serve.config.js -w",
"prettier:check": "prettier --config .prettierrc.json --check",
"prettier:write": "prettier --config .prettierrc.json --write",
"eslint:check": "eslint -c .eslintrc.json",
"preversion": "npm test && npm run build && paopu && git add .",
"lerna:version": "dotenv -- lerna version --no-private --force-publish",
"lerna:publish": "dotenv -- lerna publish from-git --yes --force-publish",
"release": "npm run lerna:version && npm run lerna:publish"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/eslint-parser": "^7.21.8",
"@babel/plugin-transform-react-jsx": "^7.22.3",
"@babel/preset-env": "^7.22.2",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"babel-jest": "^29.5.0",
"conventional-changelog-cli": "^3.0.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^7.1.4",
"lint-staged": "^13.2.2",
"paopu": "^0.1.2",
"prettier": "^3.0.0",
"rollup": "^3.26.2",
"rollup-plugin-dev": "^2.0.4",
"semver": "^7.5.1",
"yargs": "^17.7.2"
},
"author": "George Treviranus <geowtrev@gmail.com>",
"homepage": "https://github.com/geotrev/bulba#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/geotrev/bulba.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geotrev/bulba/issues"
},
"lint-staged": {
"*.js": [
"npm run prettier:check",
"npm run eslint:check"
],
"*.json": [
"npm run prettier:write"
]
},
"workspaces": [
"packages/utils",
"packages/jsx",
"packages/template",
"packages/element"
]
}