-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.76 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.76 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@userwidgets/api",
"version": "0.7.25",
"description": "The userwidgets app api.",
"private": true,
"repository": "https://github.com/userwidgets/api",
"type": "module",
"bugs": {
"url": "https://github.com/userwidgets/api/issues"
},
"homepage": "https://github.com/userwidgets/api",
"main": "./dist/_worker.mjs",
"module": "./dist/_worker.mjs",
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": [
"ts-jest",
{
"tsconfig": "./tsconfig.test.json"
}
]
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/(?!(authly|flagly|isly|isoly|cryptly|gracely|cloudly-http|cloudly-rest|cloudly-router|cloudly-formdata|@userwidgets|@issuefab/model)/.*)"
],
"testEnvironment": "node",
"testRegex": "((\\.|/)(test|spec))(\\.|\\/.+)(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"node_modules/",
"dist/"
],
"collectCoverageFrom": [
"**/*.{ts,tsx,js,jsx}",
"!**/node_modules/**",
"!**/dist/**"
]
},
"scripts": {
"lint": "eslint '**/*.{ts,tsx}'",
"fix": "eslint '**/*.{ts,tsx}' --fix",
"clean": "rimraf dist node_modules coverage",
"test": "jest",
"login": "wrangler login",
"transpile": "tsc --project tsconfig.test.json",
"test:watch": "watch jest",
"publish:production": "NODE_ENV=production wrangler publish --env production",
"publish:preview": "NODE_ENV=preview wrangler publish --env preview",
"build": "NODE_ENV=production rollup -c",
"build:local": "NODE_ENV=development rollup -c",
"start": "NODE_ENV=development && (rollup -c --watch) & (while [ ! -f dist/_worker.js ]; do sleep 0.1; done && wrangler dev --live-reload --env local --inspector-port 9230 ; kill $!)"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20240725.0",
"@rollup/plugin-commonjs": "26.0.1",
"@rollup/plugin-json": "6.1.0",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"eslint": "8.56.0",
"eslint-plugin-prettierx": "github:utily/eslint-plugin-prettierx#utily-20231004",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"jest-cli": "29.7.0",
"prettierx": "github:utily/prettierx#utily-20231004",
"rimraf": "6.0.1",
"rollup": "4.19.1",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-typescript2": "0.36.0",
"ts-jest": "29.2.3",
"tslib": "2.6.3",
"typedly": "^0.0.6",
"typescript": "5.5.4",
"wrangler": "3.67.1"
},
"dependencies": {
"@userwidgets/model": "0.8.30",
"authly": "^3.1.1",
"cloudly-http": "^0.1.7",
"cloudly-rest": "^0.1.4",
"cloudly-router": "^0.1.1",
"cloudly-storage": "^0.10.8",
"cryptly": "4.0.5",
"flagly": "^0.2.2",
"gracely": "^2.0.8",
"isly": "^0.1.16",
"isoly": "^2.3.11",
"resend": "^3.5.0"
}
}