This repository has been archived by the owner on Jun 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.14 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
{
"name": "goodwe-api",
"version": "0.3.2",
"description": "Goodwe API fetch to PVOutput",
"main": "index.js",
"scripts": {
"dev": "nodemon --inspect --exec babel-node --extensions '.ts,.js' ./src -- --debug --keepalive",
"start": "npm run build; node ./dist/index.js",
"build": "babel --extensions '.ts,.js' ./src -d ./dist",
"test": "eslint ./src"
},
"keywords": [
"goodwe",
"PVOutput",
"SEMS"
],
"bin": {
"semsSync": "cli.js"
},
"author": "Ivo Toby - [email protected]",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-function-sent": "^7.8.3",
"@babel/plugin-proposal-json-strings": "^7.8.3",
"@babel/plugin-proposal-logical-assignment-operators": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-stage-0": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@babel/runtime": "^7.8.4",
"babel-eslint": "^10.0.3",
"babel-plugin-dynamic-import-node": "^2.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"nodemon": "^2.0.2"
},
"dependencies": {
"chalk": "^3.0.0",
"dotenv": "^8.2.0",
"flat-cache": "^2.0.1",
"log-to-file": "^2.0.2",
"node-fetch": "^2.6.0",
"yargs": "^15.1.0"
}
}