forked from Pi-Control/Pi-Control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
51
{
"name": "pi-control",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/app.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pi-Control/Pi-Control.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Pi-Control/Pi-Control/issues"
},
"homepage": "https://github.com/Pi-Control/Pi-Control#readme",
"dependencies": {
"body-parser": "^1.19.0",
"cron": "^1.8.2",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.6.0",
"graphql-playground-middleware-express": "^1.7.12",
"merge-graphql-schemas": "^1.7.6",
"moment": "^2.24.0",
"sequelize": "^5.21.5",
"sqlite3": "^4.1.1",
"systeminformation": "^4.22.5"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/cron": "^1.7.2",
"@types/express": "^4.17.2",
"@types/node": "^13.1.8",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
}
}