forked from six-group/six-webcomponents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.64 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.64 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
{
"name": "@six-group/workspace",
"version": "4.0.1",
"scripts": {
"start": "npm run start -w libraries/ui-library",
"watch": "npm run watch -w libraries/ui-library",
"watch:angular": "npm run watch -w libraries/ui-library-angular",
"watch:react": "npm run watch -w libraries/ui-library-react",
"start:doc": "npm run start -w docs",
"start:doc:fresh": "npm run build:doc && npm run start:doc",
"start:doc:fresh:full": "npm run build:lib && npm run build:doc && npm run start:doc",
"build:doc": "npm run build -w docs",
"preview:doc": "npm run preview -w docs",
"build": "npm run build --workspaces",
"build:lib": "npm run build -w libraries",
"lint:lib": "npm run lint -w libraries --if-present",
"test:unit": "npm run test -w libraries/ui-library",
"start:docs": "npm run start -w docs",
"demo:react": "npm start -w examples/react",
"demo:angular": "npm start -w examples/angular",
"clean": "npm run clean --workspaces",
"clean:locks": "find . -name 'package-lock.json' -type f -prune -exec rm '{}' +",
"clean:modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"clean:radical": "npm run clean:modules && npm run clean:locks && npm cache clear --force && npm cache verify",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"workspaces": [
"libraries/ui-library",
"libraries/ui-library-react",
"libraries/ui-library-angular",
"examples/angular",
"examples/react",
"examples/js",
"docs"
],
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8"
},
"license": "Apache-2.0"
}