-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 981 Bytes
/
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
43
44
45
46
47
48
49
50
{
"name": "vs-server",
"version": "1.0.0",
"description": "Public node server with CORS",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/shystruk/cors-node-server.git"
},
"bugs": {
"url": "https://github.com/shystruk/cors-node-server/issues"
},
"license": "MIT",
"homepage": "https://github.com/shystruk/cors-node-server",
"author": {
"name": "Vasyl Stokolosa",
"email": "v.stokol@gmail.com",
"url": "https://github.com/shystruk"
},
"keywords": [
"nodejs",
"public server",
"cors"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^5.9.28",
"node-fetch": "^2.6.0",
"uuid": "^8.0.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"husky": "^4.2.5"
},
"engines": {
"node": ">=12.5.0"
}
}