-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 994 Bytes
/
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
{
"author": "Thomas Jun Yamasaki",
"license": "ISC",
"name": "monorepo",
"version": "1.0.0",
"description": "Monorepo - Multipackage sandbox",
"workspaces": [
"packages/*"
],
"main": "index.js",
"repository": "git+https://github.com/tjunyamasaki/monorepo.git",
"bugs": {
"url": "https://github.com/tjunyamasaki/monorepo/issues"
},
"homepage": "https://github.com/tjunyamasaki/monorepo#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "lerna exec npm run \"build\" ",
"release": "lerna publish --contents dist"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/preset-env": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"babel-loader": "^8.0.6",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"react": "16.12.0",
"react-dom": "16.12.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}