-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "mavsdk",
"version": "0.0.1",
"description": "MAVSDK-JavaScript, a JS wrapper for MAVSDK using grpc-web to generate a static http client, communicating through the Envoy proxy",
"private": true,
"main": "src/index.js",
"dependencies": {
"@babel/runtime": "^7.13.9",
"@grpc/grpc-js": "^1.2.10",
"@grpc/proto-loader": "^0.5.6",
"google-protobuf": "^3.15.5",
"grpc": "^1.22.0",
"grpc-web": "^1.0.5",
"lodash": "^4.17.19",
"npm-check-updates": "^3.1.20",
"protoc-gen-grpc-web": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"autoprefixer": "^9.4.10",
"babel-loader": "^8.1.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"file-loader": "^3.0.1",
"grpc-tools": "^1.8.1",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"sass": "^1.17.2",
"sass-loader": "^7.1.0",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"build-production": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"start": "webpack-dev-server --open"
},
"author": "@mrpollo",
"license": "BSD-3-Clause",
"repository": "https://github.com/mrpollo/sdk-node",
"browserslist": "> 1%"
}