-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 921 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
{
"name": "strawpoll",
"version": "0.1.1",
"description": "Application for Creating and Voting on Polls",
"keywords": [
"poll",
"voting",
"strawpoll",
"vote",
"ballot",
"survey"
],
"homepage": "https://github.com/mic-max/strawpoll-v2#readme",
"bugs": {
"url": "https://github.com/mic-max/strawpoll-v2/issues",
"email": "[email protected]"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "https://github.com/mic-max/strawpoll-v2"
},
"private": true,
"author": "Michael Maxwell",
"engines": {
"node": ">=0.12"
},
"dependencies": {
"express": "~4.17.3",
"mongoose": "^8.6.0",
"morgan": "~1.9.1",
"pug": "^2.0.4",
"serve-favicon": "^2.5.0",
"ws": "^8.18.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"mocha": "^9.0.3"
},
"scripts": {
"start": "node app",
"dev": "set NODE_ENV=DEV&& node app",
"test": "mocha",
"lint": "npx eslint ."
}
}