-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.26 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.26 KB
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
{
"name": "node-workshop-exercises",
"version": "1.0.0",
"description": "NodeJS Workshop Exercises",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon lib/dont-peek",
"debug": "node --nolazy --inspect-brk=9229 lib/02-web-server"
},
"repository": {
"type": "git",
"url": "https://github.com/8pointers/node-js-workshop-exercises.git"
},
"author": "Damjan Vujnovic",
"license": "UNLICENSED",
"devDependencies": {
"eslint": "5.15.1",
"eslint-config-prettier": "4.1.0",
"jest": "24.1.0",
"nodemon": "1.18.10",
"prettier": "1.16.4"
},
"dependencies": {
"co-body": "^6.0.0",
"koa": "2.7.0",
"koa-jwt": "3.5.1",
"mongodb": "3.1.13",
"node-fetch": "2.3.0",
"request": "^2.88.0",
"sqlite3": "4.0.6"
},
"eslintConfig": {
"env": {
"jest": true,
"node": true
},
"extends": [
"prettier"
],
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"__": false
},
"rules": {
"consistent-this": [
"error",
"fn",
"self"
]
}
},
"jest": {
"globals": {
"__": "Fill this in so that the test is passing"
}
},
"prettier": {
"printWidth": 120,
"singleQuote": true
}
}