-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.41 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
{
"name": "belajar-monorepo",
"commands": {
"publish": {
"ignoreChanges": [
"**/*.md",
"*.txt",
"**/example/**",
"test/**",
"**/test/**",
"tests/**",
"**/tests/**",
"packages/**/package-lock.json"
]
}
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"npmClient": "yarn",
"private": true,
"scripts": {
"build": "lerna exec -- rollup -c=../../rollup.config.js --bundleConfigAsCjs",
"watch": "lerna exec --no-sort -- rollup -w -c=../../rollup.config.js --bundleConfigAsCjs",
"single": "lerna exec --scope @mangkodir-ui/$packages -- rollup -c=../../rollup.config.js --bundleConfigAsCjs",
"single:watch": "lerna exec --scope @mangkodir-ui/$packages -- rollup -w -c=../../rollup.config.js --bundleConfigAsCjs"
},
"keywords": [],
"author": "",
"license": "Gunadarma",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"lerna": "^5.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.26.3",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"styled-jsx": "^5.1.2"
},
"peerDependencies": {
"react": "^18.2.0",
"styled-jsx": "^5.1.2"
}
}