-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 826 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
{
"name": "tournament-brackets-server",
"version": "0.1.0",
"description": "Server for Tournament brackets",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start:dev": "nodemon index.js",
"test": "mocha test/index.js",
"lint": "eslint ."
},
"author": "Patrik Piskay",
"repository": {
"type": "git",
"url": "https://github.com/patrik-piskay/tournament-brackets-server"
},
"license": "MIT",
"dependencies": {
"babel-core": "^6.2.1",
"babel-preset-es2015": "^6.1.18",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"express-cors": "0.0.3",
"lodash": "^3.10.1",
"sqlite3": "^3.1.1"
},
"devDependencies": {
"assert": "^1.3.0",
"babel-eslint": "^4.1.6",
"eslint": "^1.10.3",
"mocha": "^2.3.4",
"nodemon": "^1.8.1"
}
}