forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 811 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 811 Bytes
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
{
"name": "count",
"version": "1.0.0",
"description": "records events on a channel",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "eslint src",
"start": "node --experimental-vm-modules index.js"
},
"keywords": [],
"author": "Mike Williamson",
"license": "MIT",
"dependencies": {
"dotenv-safe": "^8.2.0",
"nats": "^2.2.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"prettier": "^2.3.2"
}
}