-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.16 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
{
"private": true,
"name": "neh",
"version": "1.0.0",
"description": "A tool that redirects you; intended to be an Alfred for your browser.",
"scripts": {
"start": "env-cmd wrangler dev",
"preview": "env-cmd wrangler preview --watch",
"publish": "wrangler publish",
"typecheck": "tsc --noEmit",
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "yarn lint:code && yarn lint:misc",
"lint:fix": "yarn lint:code:fix && yarn lint:misc:fix",
"lint:code": "eslint --ext .ts,.js .",
"lint:code:fix": "yarn lint:code --fix",
"lint:misc": "prettier --check **/*.{json,md,pug} --ignore-path '{node_modules,worker,dist}'",
"lint:misc:fix": "yarn lint:misc --write",
"ci": "yarn typecheck && yarn lint && yarn test"
},
"author": "E-Liang Tan <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloudflare/wrangler": "^1.13.0",
"@fullhuman/postcss-purgecss": "^3.1.3",
"@prettier/plugin-pug": "^1.13.3",
"@types/fuzzyset": "^1.0.2",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.27",
"@types/pug": "^2.0.4",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"@udacity/types-service-worker-mock": "^1.2.0",
"awesome-pug-jest": "^1.1.0",
"cloudflare-worker-mock": "^1.2.0",
"codecov": "^3.8.1",
"css-loader": "^5.0.2",
"cssnano": "^4.1.10",
"env-cmd": "^10.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"fuzzyset": "^1.0.6",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-junit": "^12.0.0",
"jest-raw-loader": "^1.0.1",
"jest-transform-stub": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.2.1",
"pug": "^3.0.0",
"pug-loader": "^2.4.0",
"raw-loader": "^4.0.2",
"source-map-loader": "^1.1.3",
"tailwindcss": "^1.9.6",
"ts-jest": "^26.5.1",
"ts-loader": "^8.0.17",
"types-cloudflare-worker": "^1.2.0",
"typescript": "^4.1.5",
"url-parse": "^1.4.7",
"webpack": "^4.46.0",
"webpack-cli": "^4.5.0"
}
}