Create package.json

#2
by pluviouse - opened
Files changed (1) hide show
  1. package.json +11 -0
package.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "hit-counter",
3
+ "version": "1.0.0",
4
+ "main": "app.js",
5
+ "dependencies": {
6
+ "express": "*"
7
+ },
8
+ "scripts": {
9
+ "start": "node app.js"
10
+ }
11
+ }