-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 773 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 773 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
31
{
"name": "online-poll",
"version": "0.1.0",
"description": "Online poll application",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "PORT=5555 mocha",
"dev": "PORT=5000 nodemon src/index.js",
"tdd": "PORT=5556 nodemon ./node_modules/.bin/mocha"
},
"repository": "deepak-jacob/online-poll",
"author": "Deepak Jacob <jacob.deepak@yahoo.com>",
"license": "MIT",
"dependencies": {
"async": "^2.4.0",
"body-parser": "^1.13.3",
"cors": "^2.7.1",
"express": "^4.13.3",
"morgan": "^1.8.0",
"mysql": "^2.13.0",
"sequelize": "^3.30.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"eslint": "^3.1.1",
"mocha": "^3.4.1",
"nodemon": "^1.9.2"
}
}