-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.47 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
{
"private": true,
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@titian-design/cli": "^0.2.0",
"@titian-design/eslint-plugin": "^0.2.0",
"@titian-design/prettier-plugin-wxml": "^0.1.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.10",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.2.2",
"css-select": "^5.1.0",
"cz-customizable": "^6.3.0",
"dom-serializer": "^2.0.0",
"eslint": "^7.32.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.1.2",
"miniprogram-api-typings": "^3.4.6",
"postcss-less": "^6.0.0",
"prettier": "^2.3.2",
"stylelint": "^14.0.0",
"stylelint-config-prettier": "^9.0.0",
"stylelint-config-property-sort-order-smacss": "^8.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"ts-jest": "^27.0.7",
"typescript": "^4.5.5",
"cross-env": "^7.0.3",
"inquirer": "^8.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"commit": "cz",
"start": "titian-cli start",
"build": "titian-cli build",
"build:wx": "cross-env TARGET=wx titian-cli build",
"build:titan": "cross-env TARGET=titan titian-cli build",
"release": "titian-cli release",
"test": "jest",
"prettier": "prettier --check **",
"prettier:fix": "prettier ** --write",
"lint": "eslint --ext .js --ext .ts packages/",
"lint:fix": "eslint --ext .js --ext .ts packages/ --fix",
"stylelint": "stylelint packages/**/*.{css,less}",
"stylelint:fix": "stylelint packages/**/*.{css,less} --fix",
"lint-staged": "lint-staged -c .lintstagedrc.js",
"generate": "node ./tasks/createTitianComponent.js"
},
"repository": {
"type": "git",
"url": "https://github.com/weimob-tech/titian-weapp"
},
"keywords": [],
"author": "",
"license": "MIT",
"issues": {
"url": "https://github.com/weimob-tech/titian-weapp/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "cz-customizable.config.js"
}
},
"dependencies": {
"fs-extra": "^10.0.0",
"miniprogram-ci": "^1.6.1",
"node-fetch-commonjs": "^3.1.1",
"prompts": "^2.4.2",
"glob": "^7.2.0"
}
}