-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
75 lines (75 loc) · 3.86 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "unovis",
"version": "1.4.4",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/ts",
"packages/angular",
"packages/react",
"packages/svelte",
"packages/vue",
"packages/solid",
"packages/shared"
],
"engines": {
"node": ">=12.0.0",
"npm": ">=7.0.0"
},
"scripts": {
"dev": "cd packages/dev && npm run dev",
"website": "cd packages/website && npm run start",
"build": "npm run build:ts && npm run build:react && npm run build:angular && npm run build:svelte && npm run build:vue && npm run build:solid && npm run build:website",
"build:ts": "cd packages/ts && npm run build",
"build:angular": "cd packages/angular && npm run build",
"build:react": "cd packages/react && npm run build",
"build:svelte": "cd packages/svelte && npm run build",
"build:vue": "cd packages/vue && npm run build",
"build:solid": "cd packages/solid && npm run build",
"build:website": "cd packages/website && npm run build",
"build:dev": "cd packages/dev && npm run build",
"publish:ts": "cd packages/ts && npm run build && npm run publish:dist",
"publish:angular": "cd packages/angular && npm run build && npm publish",
"publish:react": "cd packages/react && npm run build && npm run publish:dist",
"publish:svelte": "cd packages/svelte && npm run build && npm run publish:dist",
"publish:vue": "cd packages/vue && npm run build && npm run publish:dist",
"publish:solid": "cd packages/solid && npm run build && npm run publish:dist",
"publish:all": "npm run publish:ts && npm run publish:angular && npm run publish:react && npm run publish:svelte && npm run publish:vue && npm run publish:solid",
"publish:ts:beta": "cd packages/ts && npm run build && npm run publish:dist -- --tag beta",
"publish:angular:beta": "cd packages/angular && npm run build && npm publish --tag beta",
"publish:react:beta": "cd packages/react && npm run build && npm run publish:dist -- --tag beta",
"publish:svelte:beta": "cd packages/svelte && npm run build && npm run publish:dist -- --tag beta",
"publish:vue:beta": "cd packages/vue && npm run build && npm run publish:dist -- --tag beta",
"publish:solid:beta": "cd packages/solid && npm run build && npm run publish:dist -- --tag beta",
"publish:all:beta": "npm run publish:ts:beta && npm run publish:angular:beta && npm run publish:react:beta && npm run publish:svelte:beta && npm run publish:vue:beta && npm run publish:solid:beta",
"lint": "eslint ./ --ext .js,.jsx,.ts,.tsx,.svelte --ignore-path .gitignore",
"lint:fix": "eslint ./ --ext .js,.jsx,.ts,.tsx,.svelte --fix --ignore-path .gitignore",
"install:clean": "for p in packages/*; do rm -f $p/package-lock.json; rm -rf $p/node_modules; done; rm -rf node_modules; npm i",
"postinstall": "sh postinstall.sh",
"gather-licenses": "for p in packages/*; do echo \" 📄 Checking licenses for $p\"; npx license-report --package=$p/package.json --config lic-report-config.json --output=table > $p/licences.temp; mv -f $p/licences.temp $p/licences.txt; done",
"version": "sh update-version.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "^16.11.14",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-import-newlines": "^1.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-svelte": "^2.10.0",
"husky": "^7.0.4",
"license-report": "^6.4.0",
"lint-staged": "^12.1.3",
"typescript": "~4.2.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,svelte}": "eslint --quiet --cache --fix"
}
}