-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "racer159-net",
"version": "1.0.0",
"description": "racer159.net Cloudflare Worker",
"main": "worker.js",
"scripts": {
"build": "webpack && cp package.json ./dist && cp package-lock.json ./dist",
"lint": "npm run lint:css && npm run lint:js",
"lint:js": "eslint . --ext .js,.ts,.htm",
"lint:css": "npx stylelint \"**/*.htm\" \"**/*.css\"",
"release": "wrangler publish",
"start": "wrangler dev",
"test": "jest --config jestconfig.json --verbose"
},
"author": "racer159",
"license": "MIT",
"eslintConfig": {
"root": true,
"extends": [
"typescript"
]
},
"devDependencies": {
"@cloudflare/workers-types": "^3.0.0",
"@types/jest": "^26.0.23",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-html": "^6.2.0",
"jest": "^27.0.1",
"postcss-html": "^1.3.0",
"service-worker-mock": "^2.0.5",
"stylelint": "^14.5.1",
"stylelint-config-html": "^1.0.0",
"stylelint-config-standard": "^25.0.0",
"ts-jest": "^27.0.1",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0"
}
}