-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 995 Bytes
/
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
{
"name": "oc-website",
"version": "1.0.0",
"description": "Website for OpenCollective",
"main": "server.js",
"engines": {
"node": ">= 4.0.0"
},
"dependencies": {
"body-parser": "^1.14.1",
"email-templates": "^2.0.1",
"express": "^4.13.3",
"google-spreadsheet": "^1.0.1",
"nodemailer": "^1.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenCollective/website.git"
},
"keywords": [
"open",
"fintech",
"budget"
],
"author": "OpenCollective, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/OpenCollective/website/issues"
},
"homepage": "https://github.com/OpenCollective/website#readme",
"devDependencies": {
"node-sass": "^3.4.1",
"nodemon": "^1.8.1"
},
"scripts": {
"build-css": "node-sass --include-path public/styles/scss public/styles/scss/style.scss public/styles/css/style.css",
"dev": "node server & nodemon -e scss -x \"npm run build-css\""
}
}