-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
58 lines (58 loc) · 2 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
{
"name": "nodestatus",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/cokemine/nodestatus.git",
"license": "MIT",
"author": "Kagurazaka Mizuki",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=18.14.0"
},
"scripts": {
"app:cli": "pnpm --filter=nodestatus-cli",
"app:main": "pnpm --filter=nodestatus-*",
"app:server": "pnpm --filter=nodestatus-server",
"app:web": "pnpm --filter=*-theme --filter=*-admin",
"build": "npm run app:main build && npm run app:web build",
"postbuild": "node scripts/postbuild.js",
"dev": "npm run app:server dev",
"dev:classic": "cross-env THEME=classic-theme npm run dev",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --ignore-pattern build --ignore-pattern dist --fix",
"publish": "npm run build && npm run app:server publish",
"start": "npm run app:server start",
"pretest": "cross-env NODE_ENV=TEST npm run app:server pretest",
"test": "cross-env NODE_ENV=TEST vitest"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "v15.2.3",
"@rollup/plugin-run": "^3.1.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"esbuild": "^0.23.0",
"eslint": "^8.15.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-vue": "^8.7.1",
"fs-extra": "^11.1.0",
"rollup": "4.18.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "^5.5.3",
"vitest": "^0.34.6",
"vitest-mock-extended": "^1.3.1",
"vue-eslint-parser": "^9.0.1"
},
"prisma": {
"schema": "packages/nodestatus-server/prisma/schema.prisma"
}
}