forked from spencerwooo/onedrive-cf-index
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 983 Bytes
/
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
{
"private": true,
"name": "onedrive-cf-index",
"version": "1.0.0",
"description": "A template for kick starting a Cloudflare Workers project",
"main": "./src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write '**/*.{js,css,json,md}'",
"lint": "eslint src/**/* *.js --color --fix",
"preview": "wrangler preview --watch",
"dev": "wrangler dev"
},
"author": "spencerwooo <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^1.18.2"
},
"dependencies": {
"emoji-regex": "^9.2.0",
"font-awesome-filetypes": "^2.1.0",
"marked": "^2.0.1"
}
}