-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.58 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
{
"name": "coding_for_product",
"version": "1.0.0",
"description": "[Philosophie](http://philosophie.is) + [Women Who Code](http://womenwhocode.com) will be holding a series of five workshops where we guide small teams of intermediate-beginner female coders to create a web application. The workshops will be held June/July 2017 in Santa Monica.",
"main": "app.js",
"scripts": {
"dev": "NODE_ENV=development nodemon app.js",
"start": "NODE_ENV=production node app.js",
"migrate": "knex migrate:latest",
"import:feedback": "node app/google_forms/course_feedback.js",
"import:tech": "node app/google_forms/tech_career_advice.js"
},
"engines": {
"node": "7.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingForProduct/workshop_intro.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodingForProduct/workshop_intro/issues"
},
"homepage": "https://github.com/CodingForProduct/workshop_intro#readme",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.17.2",
"connect-flash": "^0.1.1",
"connect-session-knex": "^1.3.4",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"email-encoder": "^1.0.2",
"express": "^4.15.3",
"express-ejs-layouts": "^2.3.0",
"express-session": "^1.15.3",
"express-validator": "^3.2.0",
"googleapis": "^20.1.0",
"knex": "^0.13.0",
"lodash": "^4.17.4",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-local": "^1.0.0",
"pg": "^6.2.3"
}
}