-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.9 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
{
"name": "keep-asking",
"version": "1.0.0",
"description": "A system for collecting information from groups of people on a regular basis.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build-styles": "./node_modules/node-sass/bin/node-sass --output-style compressed public/styles/style.scss -o public/styles/ --source-map true",
"watch-styles": "./node_modules/node-sass/bin/node-sass --output-style compressed public/styles/style.scss -o public/styles/ --source-map true -w",
"watch-js": "watchify ./public/scripts/main.js -o ./public/scripts/script.js",
"build-js": "browserify ./public/scripts/main.js -o ./public/scripts/script.js",
"build": "npm run build-js; npm run build-styles",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Keep-Asking/keep-asking.git"
},
"author": {
"name": "Sebastian Hallum Clarke",
"url": "https://www.sebthedev.com/"
},
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Keep-Asking/keep-asking/issues"
},
"homepage": "https://github.com/Keep-Asking/keep-asking#readme",
"dependencies": {
"body-parser": "^1.19.0",
"browserify": "^16.2.3",
"cookie-session": "^2.0.0-beta.3",
"dotenv": "^5.0.1",
"ejs": "^2.6.2",
"express": "^4.17.1",
"html5sortable": "^0.9.16",
"moment": "^2.24.0",
"mongoose": "^5.6.3",
"mongoose-findorcreate": "^3.0.0",
"node-sass": "^4.12.0",
"nodemailer": "^4.7.0",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemailer-sparkpost-transport": "^2.2.0",
"passport": "^0.4.0",
"passport-cas2": "0.0.9",
"passport-custom": "^1.0.5",
"passport-google-oauth": "^1.0.0",
"uuid": "^3.3.2"
},
"standard": {
"globals": [
"$",
"moment"
]
},
"engines": {
"node": ">=9.9.0"
}
}