-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@supul/rasppi-sensors",
"version": "0.0.0",
"private": true,
"license": "MIT",
"bin": {
"rasppi-sensor-reader": "./apps/sensor-reader/bin/run",
"rasppi-sensor-reader-dev": "./apps/sensor-reader/bin/dev"
},
"scripts": {
"build": "nx build",
"build:all": "nx run-many --target=build --all",
"pack": "nx run-many --target=pack --all",
"start": "cd dist/apps/sensors && ORIGIN=http://localhost:3000 node . && cd -",
"start:dev": "nx run sensors:serve",
"test": "nx test",
"cm": "cz",
"reader": "./apps/sensor-reader/bin/run",
"reader:dev": "./apps/sensor-reader/bin/dev",
"prisma": "prisma",
"migrate:db": "prisma migrate dev",
"update": "ncu -i",
"update:unstable": "ncu -i --target greatest"
},
"config": {
"commitizen": {
"path": "./node_modules/@supul/cz-conventional-emoji"
}
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@felte/validator-yup": "^1.0.2",
"@oclif/core": "^1.5.3",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.1.0",
"@prisma/client": "^3.10.0",
"dayjs": "^1.10.8",
"ds18b20-raspi": "^0.3.6",
"eslint-plugin-unicorn": "^41.0.0",
"lodash": "^4.17.21",
"p-wait-for": "^3",
"prisma": "^3.10.0",
"svelte-file-dropzone": "^1.0.0-dev.1",
"svelte-frappe-charts": "^1.9.1",
"tslib": "^2.3.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@angular-devkit/schematics": "^13.2.6",
"@nrwl/cli": "13.8.5",
"@nrwl/eslint-plugin-nx": "13.8.5",
"@nrwl/linter": "13.8.5",
"@nrwl/node": "^13.8.5",
"@nrwl/tao": "13.8.5",
"@nrwl/workspace": "13.8.5",
"@nxext/sveltekit": "^13.0.0-next.2",
"@oclif/test": "^2",
"@supul/cz-conventional-emoji": "^0.1.0",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-node": "^1.0.0-next.71",
"@sveltejs/kit": "next",
"@tailwindcss/typography": "^0.5.2",
"@types/chai": "^4",
"@types/mocha": "^9.1.0",
"@types/node": "17.0.21",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "~5.14.0",
"autoprefixer": "^10.4.2",
"chai": "^4",
"daisyui": "^2.6.4",
"eslint": "8.10.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-svelte3": "^3.4.1",
"felte": "^1.1.7",
"app-root-path": "^3.0.0",
"globby": "^11",
"mocha": "^9",
"oclif": "^2.5.0",
"postcss": "^8.4.8",
"postcss-load-config": "^3.1.3",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"shx": "^0.3.4",
"svelte": "^3.46.4",
"svelte-awesome-color-picker": "^0.0.8",
"svelte-inline-svg": "^1.1.1",
"svelte-preprocess": "^4.10.4",
"tailwindcss": "^3.0.23",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.2",
"vite": "^2.8.6"
}
}