-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.49 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
{
"name": "backend",
"version": "1.0.0",
"description": "Backend application for IoThings system",
"main": "core/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node -r dotenv/config core/main.js dotenv_config_path=./.env",
"dev": "nodemon"
},
"author": "Martin Stradiot",
"license": "ISC",
"dependencies": {
"active-modules-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/active-modules-module.git",
"dotenv": "^6.2.0",
"graphql-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/graphql-module.git",
"mqtt-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/mqtt-module.git",
"require-all": "^3.0.0",
"rrd-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/rrd-module.git",
"sqlite-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/sqlite-module.git",
"zwave-interface-module": "git+https://5e6547fb352da028e3d82bd0328eb03998ad7fb8:[email protected]/stradiot/zwave-interface-module.git"
},
"devDependencies": {
"nodemon": "^1.18.9"
},
"nodemonConfig": {
"watch": [
"core/",
"databases/",
"GraphQL"
],
"ignore": [
"databases/",
"node_modules/"
],
"exec": "node -r dotenv/config core/main.js dotenv_config_path=./.env"
}
}