-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
72 lines (72 loc) · 2.28 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
{
"name": "pc-nrfconnect-ppk",
"version": "4.2.1",
"displayName": "Power Profiler",
"description": "App for use with Nordic Power Profiler Kits",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-ppk",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-ppk.git"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/bundle.js",
"nrfConnectForDesktop": {
"html": "dist/index.html",
"nrfutil": {
"device": [
"2.6.4"
]
}
},
"engines": {
"nrfconnect": ">=5.0.1"
},
"files": [
"dist/",
"resources/icon.*",
"firmware/*",
"worker/*",
"icon.png",
"LICENSE",
"Changelog.md"
],
"scripts": {
"prepare": "husky install",
"watch": "run-p --silent --continue-on-error watch:*",
"watch:build": "run-esbuild --watch",
"watch:types": "tsc --noEmit --pretty --watch --preserveWatchOutput",
"build:dev": "run-esbuild",
"build:prod": "run-esbuild --prod",
"test": "jest",
"check:app": "check-app-properties",
"check": "run-p --silent --continue-on-error --print-label check:*",
"check:lint": "eslint --color .",
"check:types": "check-for-typescript tsc --noEmit --pretty",
"check:license": "nrfconnect-license check",
"nordic-publish": "node ./dist/nordic-publish.js"
},
"devDependencies": {
"@nordicsemiconductor/pc-nrfconnect-shared": "^188.0.0",
"@types/archiver": "^6.0.2",
"@types/fs-extra": "^11.0.4",
"@types/redux-mock-store": "^1.0.3",
"@types/unzipper": "^0.10.9",
"bson": "4.6.5",
"chart.js": "^4.4.2",
"mathjs": "^10.6.3",
"react-chartjs-2": "^5.2.0",
"redux-mock-store": "^1.5.4",
"unzipper": "^0.10.14"
},
"eslintConfig": {
"extends": "./node_modules/@nordicsemiconductor/pc-nrfconnect-shared/config/eslintrc"
},
"prettier": "@nordicsemiconductor/pc-nrfconnect-shared/config/prettier.config.js",
"dependencies": {
"archiver": "^6.0.1"
},
"bundledDependencies": [
"archiver"
]
}