forked from AndreasHeine/SampleServer-node-opcua
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.34 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.34 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
{
"name": "sampleserver-node-opcua",
"version": "1.2.0",
"description": "",
"main": "server.js",
"scripts": {
"clean": "rimraf dst",
"pretest": "npm run clean && tsc",
"test": "mocha dst/test/test.js",
"start": "tsc && node dst/server.js",
"dev-test": "mocha dst/test/test.js",
"dev-start": "tsc && node dst/server.js",
"dev-start_args": "tsc && node dst/server.js --ip=127.0.0.1 --port=5000",
"dev-start_lds": "tsc && node dst/LocalDiscoveryServer/local-discovery-server.js",
"dev-debug": "tsc && node --inspect dst/server.js",
"dev-update:node-opcua": "npx rimraf node_modules && npx -y npm-check-updates -u -f \"node-opcua*\" && npm install",
"dev-update:dependencygraph": "depcruise --no-config --include-only ^src --output-type dot src | dot -T svg > dependencygraph.svg",
"linting": "eslint -c .github/linters/eslint.config.mjs",
"lint-fixup": "npx prettier --write src/ && eslint -c .github/linters/eslint.config.mjs --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreasHeine/SampleServer-node-opcua.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AndreasHeine/SampleServer-node-opcua/issues"
},
"homepage": "https://github.com/AndreasHeine/SampleServer-node-opcua#readme",
"dependencies": {
"chalk": "4.1.2",
"node-opcua": "2.163.1",
"node-opcua-file-transfer": "2.163.1",
"node-opcua-pki": "6.8.0",
"node-opcua-pubsub-expander": "^0.19.2",
"node-opcua-pubsub-server": "^0.19.2",
"node-opcua-server-discovery": "2.163.1",
"yargs": "18.0.0",
"@noble/hashes": "2.0.1"
},
"devDependencies": {
"@eslint/compat": "2.0.2",
"@eslint/eslintrc": "3.3.4",
"@eslint/js": "9.39.3",
"@types/bcrypt": "6.0.0",
"@types/chai": "5.2.3",
"@types/mocha": "10.0.10",
"@types/node": "25.3.3",
"@types/semver": "7.7.1",
"@types/yargs": "17.0.35",
"@typescript-eslint/eslint-plugin": "8.56.1",
"chai": "6.2.2",
"chalk": "4.1.2",
"dependency-cruiser": "17.3.8",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-json": "4.0.1",
"eslint-plugin-prettier": "5.5.5",
"globals": "17.4.0",
"mocha": "12.0.0-beta-10",
"prettier": "3.8.1",
"typescript": "5.9.3",
"rimraf": "6.1.3"
}
}