forked from teogenesmoura/spreadsheetsGoogle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.77 KB
/
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "spreadsheets-backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest 'server/tests' --coverage",
"lint": "esw *.js config server --color",
"start": "nodemon index.js",
"precommit": "npm run lint && npm run test"
},
"jest": {
"setupFiles": [
"<rootDir>/config/jest-setup.js"
]
},
"contributors": [
"Camila Pontes <[email protected]>",
"Larissa Bianca Lima <[email protected]>",
"Mikael Mello <[email protected]>",
"Pedro Egler <[email protected]>",
"Pedro Ivo Machado <[email protected]>",
"Rodrigo Guimarães <[email protected]>",
"Samuel Couto <[email protected]>",
"Teógenes Moura <[email protected]> (http://www.teogenesmoura.com)"
],
"repository": {
"type": "git",
"url": "[email protected]:unb-cic-esw/data-viz.git"
},
"license": "ISC",
"description": "",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bower": "^1.8.4",
"chart.js": "^2.7.2",
"chartjs-node": "^1.6.1",
"color": "^3.0.0",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"fs": "0.0.1-security",
"googleapis": "^27.0.0",
"helmet": "^3.12.0",
"http-status": "^1.0.1",
"method-override": "^2.3.10",
"mongoose": "^5.0.12",
"nodemon": "^1.17.5",
"path": "^0.12.7",
"pug": "^2.0.3",
"request-promise": "^4.2.2",
"supertest": "^3.0.0",
"winston": "^3.0.0-rc3"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-watch": "^3.1.3",
"husky": "^0.14.3",
"jest": "^22.4.4",
"jsdoc": "^3.5.5"
}
}