forked from openclams/eval-server-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1 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
{
"name": "availability",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "webpack",
"start": "node build/index.js",
"dev": "ts-node-dev --respawn src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.8",
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"mathjs": "^9.3.0",
"nodemon": "^2.0.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
"webpack-shell-plugin": "^0.5.0"
},
"devDependencies": {
"@openclams/clams-ml": "^1.5.9",
"@types/express": "^4.17.11",
"@types/mathjs": "^6.0.11",
"@types/node": "^14.14.20",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-loader": "^8.0.14",
"tslint": "^6.1.3",
"typescript": "^4.0.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
}
}