-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.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
{
"name": "root",
"private": true,
"workspaces": [
"bundle",
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"core-js": "3",
"jsdoc-api": "^5.0.4",
"lerna": "^3.20.2",
"nunjucks": "^3.2.1",
"unminified-webpack-plugin": "^2.0.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"scripts": {
"bootstrap": "lerna bootstrap --use-workspaces",
"init:packages": "yarn install && yarn run bootstrap",
"init:examples": "cd examples && yarn install",
"init": "yarn run init:packages && yarn run init:examples",
"build:packages": "yarn run init:packages && webpack --progress",
"build:examples": "yarn run init:examples && cd examples && yarn run build",
"build": "yarn run build:examples",
"dev": "yarn run bootstrap && cd examples && yarn start",
"readme": "node ./bin/readme/generate.js",
"manifest": "node ./bin/manifest.js",
"update": "node ./bin/update.js",
"version": "yarn run update && yarn run manifest && yarn run readme",
"publish": "lerna publish"
},
"contributors": [
"Alberto Parziale <[email protected]> (https://github.com/lavolpecheprogramma)",
"Andrea 'Fiad' Fiadone <[email protected]> (https://github.com/fiadone)"
]
}