-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 787 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 787 Bytes
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
{
"name": "native-server",
"version": "1.0.0",
"main": "index.js",
"description": "TypeScript calling Javascript calling C++ calling C with building with CMake and node-addon-api and node-gyp C++ wrapper.",
"scripts": {
"build": "npx tsc && node-gyp configure build",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.21",
"bindings": "^1.5.0",
"body-parser": "^1.20.2",
"cmake-js": "^7.3.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"node-gyp": "^10.1.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"types": "^0.1.1",
"typescript": "^5.5.3"
}
}