forked from stephensong/ca11
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"private": true,
"workspaces": [
"ion",
"sip",
"sig11",
"theme",
"webphone"
],
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=13.0.0",
"yarn": ">= 1.19.0"
},
"scripts": {
"backend:bridge": "docker-compose -f docker/common.yml -f docker/bridge.yml --project-directory ./docker up",
"backend": "docker-compose -f docker/common.yml -f docker/host.yml --project-directory ./docker up",
"build": "./cli/cli.js build",
"cli": "./cli/cli.js",
"frontend": "./cli/cli.js watch",
"icons": "vsvg -s theme/svg/ --es6 -t theme/icons",
"lint": "yarn lint:js;yarn lint:scss",
"lint:js": "eslint \"{sip,sig11,theme,webphone}/**/{*.js,*.vue}\"",
"lint:scss": "stylelint 'webphone/**/*.scss'",
"prepare": "yarn icons;yarn snowpack",
"release": "standard-version",
"snowpack": "snowpack"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.js": "eslint",
"**/*.scss": "stylelint"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "7.x.x",
"@garage11/vue-eslint-parser": "^8.0.0",
"@garage11/vuepack": "1.3.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",
"archy": "^1.0.0",
"chalk": "^3.0.0",
"chokidar": "^3.3.1",
"clean-css": "^4.2.3",
"connect": "^3.7.0",
"cz-conventional-changelog": "^2.1.0",
"del": "2.x.x",
"eslint": "7.x.x",
"eslint-plugin-sort-class-members": "1.x.x",
"eslint-plugin-vue": "^6.2.1",
"fs-extra": "^8.1.0",
"globby": "^11.0.0",
"husky": "3.x.x",
"imagemin": "^7.0.1",
"imagemin-jpegtran": "^6.0.0",
"imagemin-pngquant": "^8.0.0",
"lint-staged": "9.x.x",
"lodash": "^4.17.15",
"node-sass": "^4.13.1",
"node-sass-glob-importer": "^5.3.2",
"puppeteer": "2.x.x",
"rc": "^1.2.8",
"rollup": "^1.31.1",
"rollup-plugin-terser": "^5.2.0",
"snowpack": "2.x.x",
"standard-version": "7.x.x",
"stylelint": "13.x.x",
"stylelint-order": "4.x.x",
"stylelint-scss": "3.x.x",
"tap-spec": "5.x.x",
"tape": "4.x.x",
"tape-catch": "1.x.x",
"tildify": "^2.0.0",
"tiny-lr": "^1.1.1",
"vue-svgicon": "^3.2.6",
"yargs": "^15.3.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"dependencies": {
"sdp-transform": "^2.14.0"
}
}