forked from icon-space/IconSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
{
"name": "iconlink",
"private": true,
"version": "0.0.0",
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"fmt": "prettier --write ./**/*.ts ./packages",
"clean": "bash scripts/clean.sh",
"update:version": "bash scripts/version.sh",
"compiler": "bash scripts/compiler.sh",
"build": "gulp",
"pub": "bash scripts/publish.sh",
"prepare": "husky install",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
},
"dependencies": {
"@icon-link/compiler": "workspace:^"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.21.5",
"@babel/preset-env": "^7.22.4",
"@babel/preset-react": "^7.22.3",
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/gulp": "^4.0.11",
"@types/gulp-babel": "^6.1.30",
"@types/gulp-clean-css": "^4.3.1",
"@types/gulp-debug": "^2.0.33",
"@types/gulp-less": "^0.0.33",
"@types/merge2": "^1.4.1",
"@types/node": "^20.2.5",
"@vue/babel-plugin-jsx": "^1.1.1",
"@vue/babel-preset-jsx": "^1.4.0",
"commitizen": "^4.3.0",
"csv-parse": "^5.4.0",
"csv-stringify": "^6.4.0",
"cz-customizable": "^7.0.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^4.3.0",
"gulp-debug": "^4.0.0",
"gulp-less": "^5.0.0",
"gulp-typescript": "6.0.0-alpha.1",
"husky": "^8.0.3",
"merge2": "^1.4.1",
"minimatch": "^9.0.1",
"mkdirp": "^3.0.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3",
"x2js": "^3.4.4"
}
}