-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.69 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": "nicelinks-quick-app",
"version": "3.8.0",
"description": "🌪Awesome NICE LINKS(倾城之链) client built with quickapp(快应用)",
"keywords": [
"快应用",
"倾城之链"
],
"author": "nicejade",
"license": "MIT",
"scripts": {
"start": "concurrently \"node ./command/server.js\" \"npm run watch\"",
"server": "hap server",
"watch": "hap watch",
"build": "hap build",
"postinstall": "hap postinstall",
"debug": "hap debug",
"release": "hap release",
"dpreview": "./command/dpreview.sh",
"precommit-msg": "echo '🚧 Pre-commit checks...' && exit 0",
"prettier": "node ./command/selfCloseInputTag.js && prettier --write 'src/**/*.js' 'src/**/*.ux'",
"prettier-watch": "onchange '**/*.md' 'src/**/*.js' 'src/**/*.ux' -- prettier --write {{changed}}"
},
"dependencies": {
"marked": "^0.7.0",
"md5": "^2.3.0"
},
"devDependencies": {
"@types/quickapp": "git+https://github.com/vivoquickapp/quickapp-types.git",
"address": "^1.0.3",
"concurrently": "^4.0.1",
"husky": "^1.3.1",
"less": "^3.8.1",
"less-loader": "^7.1.0",
"lint-staged": "^7.3.0",
"opn": "^5.3.0",
"portfinder": "^1.0.17",
"prettier": "^2.1.2",
"prettier-plugin-ux": "^0.3.0",
"webpack": "4.44.2"
},
"prettier": {
"singleQuote": true,
"semi": false,
"printWidth": 120,
"proseWrap": "never"
},
"husky": {
"hooks": {
"pre-commit": "yarn run precommit-msg && lint-staged"
}
},
"lint-staged": {
"**/**.{ux,js,json,pcss,md,vue}": [
"prettier --write",
"git add"
]
},
"eslintIgnore": [
"package.json"
],
"browserslist": [
"chrome 65"
]
}