-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.13 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
{
"name": "pc-nrfconnect-toolchain-manager",
"version": "1.0.0",
"description": "Install and manage tools to develop with the nRF Connect SDK (NCS)",
"displayName": "Toolchain Manager",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-toolchain-manager.git"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"nrfconnect": "^3.11.1"
},
"main": "dist/bundle.js",
"files": [
"dist/",
"resources/icon.*",
"resources/nrfutil-toolchain-manager",
"LICENSE"
],
"scripts": {
"dev": "webpack watch --mode development",
"webpack": "webpack build --mode development",
"build": "webpack build",
"test": "jest",
"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": "nordic-publish"
},
"devDependencies": {
"@reduxjs/toolkit": "1.6.1",
"@testing-library/react": "^12.1.1",
"@types/fs-extra": "^9.0.12",
"@types/node": "^14.14.33",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.16",
"@types/react-redux": "^7.1.18",
"@types/semver": "^7.3.8",
"electron": "^13.5.1",
"electron-store": "^8.0.0",
"pc-nrfconnect-shared": "git+https://github.com/NordicSemiconductor/pc-nrfconnect-shared.git#v6.3.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"sudo-prompt": "^9.2.1"
},
"dependencies": {
"extract-zip": "^2.0.1",
"fs-extra": "^8.1.0",
"semver": "^7.1.1"
},
"bundledDependencies": [
"electron-store",
"extract-zip",
"fs-extra",
"semver"
],
"eslintConfig": {
"extends": "./node_modules/pc-nrfconnect-shared/config/eslintrc.js"
},
"prettier": "./node_modules/pc-nrfconnect-shared/config/prettier.config.js"
}