-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·51 lines (51 loc) · 2.08 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
{
"name": "@bettercorp/wispstock-com",
"license": "PolyForm Strict License 1.0.0",
"repository": {
"url": "git+https://github.com/BetterCorp/WISPStock.git"
},
"scripts": {
"build": "npm run build-plugin",
"build-plugin": "rm -rfv ./lib && tsc && cp -r ./src/plugins/service-wispstock/assets ./lib/plugins/service-wispstock/assets",
"build-clients": "node node_modules/@bettercorp/service-base/build-lib-clients.js",
"dev": "nodemon --config nodemon.json",
"start": "ts-node node_modules/@bettercorp/service-base/lib/cli.js",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node ./node_modules/nyc/bin/nyc.js --reporter json --reporter lcov ./node_modules/mocha/bin/mocha.js -r ts-node/register 'src/tests/**/*.ts' --reporter json --reporter-options output=junit.json",
"testDev": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' node ./node_modules/nyc/bin/nyc.js ./node_modules/mocha/bin/mocha.js -r ts-node/register 'src/tests/**/*.ts'"
},
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"version": "0.0.1",
"bsb_project": false,
"devDependencies": {
"@types/assert": "^1.5.10",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.4",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chai": "^5.0.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@bettercorp/betterportal": "file:./bettercorp-betterportal-9.0.2.tgz",
"@bettercorp/service-base": "^8.5.63",
"@bettercorp/service-base-plugin-cloudflare-turnstiles": "^1.6.1",
"@bettercorp/service-base-plugin-events-rabbitmq": "^4.0.1",
"@bettercorp/service-base-plugin-fastify": "^2.3.2",
"@bettercorp/service-base-plugin-react-email": "^1.0.9",
"@bettercorp/tools": "^3.7.0",
"axios": "^1.6.7",
"jsx-htmx": "^1.0.8",
"ravendb": "^5.4.2",
"zod": "^3.23.8"
}
}