-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 947 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
{
"devDependencies": {
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/ndarray": "^1.0.14",
"@types/ndarray-scratch": "^1.2.4",
"cross-env": "^7.0.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@stdlib/stats": "^0.3.1",
"@stdlib/stats-base-dists-normal-cdf": "^0.2.2",
"@stdlib/stats-base-dists-t-cdf": "^0.2.2",
"buffer": "^6.0.3",
"csv-parse": "^5.5.6",
"express": "^4.21.1",
"mathjs": "^13.2.0",
"ml-matrix": "^6.12.0",
"multer": "^1.4.5-lts.1"
},
"scripts": {
"build:web": "tsc -p tsconfig.web.json && webpack --config webpack.config.js",
"build:node": "cross-env IS_BACKEND=true tsc -p tsconfig.node.json",
"start": "node dist/api/index.js",
"dev": "ts-node src/api/index.ts",
"webpack": "webpack"
}
}