-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.22 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.22 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
{
"name": "wirenboard",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "ts-node -P tsconfig.tests.json node_modules/jest/bin/jest.js",
"prebuild": "eslint && yarn test",
"build": "cross-env NODE_ENV=production rollup -c",
"prebuild:dev": "yarn prebuild",
"build:dev": "cross-env NODE_ENV=development rollup -c",
"deploy": "wsl rsync -e 'ssh -I /usr/lib/librtpkcs11ecp.so' -rltzvgO --progress --delete --exclude='alarms.conf' --groupmap=*:developers dist/* 'wihome@10.200.200.1:/mnt/data/etc/'"
},
"devDependencies": {
"@dotenv-run/rollup": "^1.3.6",
"@eslint/js": "^9.28.0",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-typescript": "^12.1.2",
"@stylistic/eslint-plugin": "^4.4.1",
"@types/jest": "^29.5.14",
"cross-env": "^7.0.3",
"eslint": "^9.28.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^16.2.0",
"jest": "^29.7.0",
"jest-mock-extended": "^4.0.0-beta1",
"rollup": "^4.41.1",
"rollup-plugin-delete": "^3.0.1",
"rollup-plugin-tsc-alias": "^1.1.4",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.33.1"
}
}