forked from spencerwooo/substats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.46 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
{
"private": true,
"name": "substats",
"version": "1.0.0",
"description": "Serverless Function to Count How Many People are Subscribed to You in Your Favorite Services",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint utils/**/* *.{js,css,vue} --color --fix",
"pretty": "prettier utils/**/*.js docs/**/*.{js,css,json,vue} *.{js,css,json,vue} --write",
"dev": "wrangler preview --watch",
"publish": "wrangler publish --env production",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"author": "spencerwooo <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8",
"prettier": "^1.18.2",
"vuepress": "^1.3.1"
},
"dependencies": {
"@innologica/vue-dropdown-menu": "^0.1.3",
"cheerio": "^1.0.0-rc.3",
"crypto-js": "^4.0.0",
"qs": "^6.9.1",
"v-clipboard": "^2.2.3",
"vue-toasted": "^1.1.28"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"eslint --color --fix"
]
}
}