katsukiai commited on
Commit
5afbf7e
·
verified ·
1 Parent(s): 1a7bc8e

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +13 -0
package.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "node-hello",
3
+ "version": "0.0.1",
4
+ "description": "Node.js Hello For Huggingface",
5
+ "author": "Rahul Kiran Gaddam",
6
+ "dependencies": {
7
+ "express": "4.16.1",
8
+ "body-parser": "^2.2.0"
9
+ },
10
+ "scripts": {
11
+ "start": "node ./index.js"
12
+ }
13
+ }