-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1014 Bytes
/
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
{
"name": "ml_timeseries",
"version": "2.1.0",
"main": "src/index.js",
"scripts": {
"docker:build": "docker build --tag docker.pkg.github.com/vraid-systems/ml_timeseries/main:`cat DOCKER_IMAGE_VERSION` .",
"docker:publish": "docker push docker.pkg.github.com/vraid-systems/ml_timeseries/main:`cat DOCKER_IMAGE_VERSION`",
"lint": "eslint src",
"start": "node src/index.js",
"test": "jest src/",
"test:ci": "jest src/ --testPathIgnorePatterns=Lstm"
},
"dependencies": {
"@google-cloud/firestore": "^7.10.0",
"@tensorflow/tfjs-node": "^3.6.1",
"arima": "^0.2.2",
"array-smooth": "^1.0.0",
"axios": "^1.7.4",
"core-js": "^3.15.2",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.6",
"node-notifier": "^10.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
]
}
}