-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.62 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
{
"name": "openair",
"version": "1.0.0",
"private": true,
"description": "Real-time Air Quality Monitoring and Navigation System based on IoT",
"license": "GNU GPLv3",
"engines": {
"node": ">=10.0.0"
},
"author": {
"name": "abhijithvijayan",
"email": "[email protected]",
"url": "https://abhijithvijayan.in"
},
"workspaces": {
"packages": [
"clients/mqtt/broker",
"clients/mqtt/publisher/node-simulator",
"clients/mqtt/subscriber",
"clients/web"
],
"nohoist": []
},
"scripts": {
"web": "yarn workspace @openair/web",
"broker": "yarn workspace @openair/broker",
"publisher": "yarn workspace @openair/publisher",
"subscriber": "yarn workspace @openair/subscriber",
"lint": "yarn workspaces foreach -p run lint",
"lint:fix": "yarn workspaces foreach -p run lint:fix",
"clean-up": "rm -rf node_modules clients/web/node_modules clients/mqtt/broker/node_modules clients/mqtt/publisher/node-simulator/node_modules clients/mqtt/subscriber/node_modules yarn.lock"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "1.4.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"concurrently": "^5.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
}
}