-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "party-finder",
"version": "1.0.0",
"description": "Party Finder, Find Game Parties",
"main": "server.js",
"scripts": {
"eslint": "node_modules/.bin/eslint server.js app/controllers/*.js static/js/*.js",
"stylelint": "node_modules/.bin/stylelint static/sass/*.scss",
"css-build": "node-sass --omit-source-map-url static/sass/main.scss static/css/main.css",
"css-watch": "npm run css-build -- --watch",
"test": "test",
"start": "node server.js",
"nmStart": "nodemon server.js",
"sassStart": "npm run css-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GiovanniDw/party-finder.git"
},
"keywords": [
"Dating"
],
"author": "Giovanni Dwidjosewojo",
"license": "ISC",
"bugs": {
"url": "https://github.com/GiovanniDw/party-finder/issues"
},
"homepage": "https://github.com/GiovanniDw/party-finder#readme",
"dependencies": {
"apicalypse": "^0.1.6",
"bcrypt": "^4.0.1",
"body-parser": "^1.19.0",
"bulma-extensions": "^6.2.7",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-session": "^1.17.0",
"mongoose": "^5.9.3",
"mongoose-autopopulate": "^0.12.0",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"bulma": "^0.8.0",
"ejs-lint": "^1.0.1",
"eslint": "^6.8.0",
"node-sass": "^4.12.0",
"nodemon": "^2.0.2",
"stylelint": "^13.2.1",
"stylelint-config-standard": "^20.0.0"
},
"engines": {
"node": "12.15.0"
},
"nodemonConfig": {
"start": "npm run test",
"restart": "npm run test"
},
"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"
],
"no-var": "error"
}
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"indentation": "tab",
"number-leading-zero": "never",
"no-descending-specificity": null
}
}
}