-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
47 lines (47 loc) · 1.75 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
{
"name": "@six-group/workspace",
"version": "4.2.6",
"scripts": {
"start": "npm run start -w libraries/ui-library",
"watch:lib": "npm run watch -w libraries/ui-library",
"watch:angular": "npm run watch -w libraries/ui-library-angular",
"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": "npm run test -w libraries/ui-library",
"start:docs": "npm run start -w docs",
"demo:angular": "npm start -w examples/angular",
"demo:vue": "npm run dev -w examples/vue",
"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-angular",
"libraries/ui-library-vue",
"examples/angular",
"examples/vue",
"examples/js",
"docs"
],
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0"
},
"license": "Apache-2.0"
}