-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 KB
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
{
"name": "scichart-nodejs-server-licensing",
"version": "1.0.0",
"description": "SciChart Server Licensing for node.js",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && npm run buildServer && npm run buildClient",
"start": "node ./build/server.js",
"buildServer": "webpack --config webpack.server.config.js",
"buildClient": "webpack --config webpack.config.js",
"dev": "webpack --config webpack.server.dev.config.js"
},
"keywords": [],
"author": "SciChart Ltd",
"license": "ISC",
"dependencies": {
"bufferutil": "^4.0.8",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"express": "^4.19.1",
"ffi-rs": "^1.0.64",
"scichart": "latest",
"utf-8-validate": "^6.0.3"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"copy-webpack-plugin": "^11.0.0",
"nodemon": "^3.1.0",
"nodemon-webpack-plugin": "^4.8.2",
"rimraf": "^5.0.5",
"ts-loader": "^9.4.2",
"webpack": "^5.59.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0"
}
}