This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.01 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "pt-tech",
"version": "0.0.1",
"description": "The dating app feature for Project Tech in blok 3.",
"main": "server.js",
"scripts": {
"eslint": "node_modules/.bin/eslint server.js controllers/*.js utils/*.js public/scripts/*.js",
"stylelint": "node_modules/.bin/stylelint public/css/*.css",
"lint": "npm run eslint && npm run stylelint",
"prestart": "npm run lint",
"start": "nodemon server.js",
"mongoStart": "mongod -f mongod.conf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iSirThijs/pt-tech.git"
},
"author": "Thijs Spijker",
"license": "MIT",
"bugs": {
"url": "https://github.com/iSirThijs/pt-tech/issues"
},
"homepage": "https://github.com/iSirThijs/pt-tech#readme",
"devDependencies": {
"eslint": "^5.15.1",
"nodemon": "^1.18.10",
"stylelint": "^9.10.1",
"stylelint-config-standard": "^18.2.0"
},
"dependencies": {
"apicalypse": "^0.1.3",
"argon2": "^0.21.0",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-session": "^1.15.6",
"mongoose": "^5.4.20"
},
"nodemonConfig": {
"ignore": ["/public/scripts/*.js"]
},
"eslintIgnore": [
"*.ejs",
"node_modules/"
],
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab",
"number-leading-zero": "never",
"no-descending-specificity": null
}
}
}