-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.16 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
{
"name": "sbhacksv",
"version": "1.0.0",
"description": "The SB Hacks V Website, which enables students to apply for our 36 hour hackathon hosted in Winter 2018",
"main": "app/server.js",
"scripts": {
"postinstall": "bash ./bin/postinstall.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/server.js",
"start:dev": "nodemon bin/server.js",
"seed": "sequelize db:seed:all",
"build": "npm run css-landing-build && npm run css-registrant-build",
"react-build": "webpack --progress --config webpack.config.js",
"react-build:dev": "webpack --watch --progress --config webpack.config.js",
"react-build:production": "webpack -p --progress --config webpack.config.js",
"css-registrant-build": "node-sass ./src/assets/scss/registrant/index.scss ./src/static/css/registrant.css",
"css-registrant-build:dev": "node-sass --watch ./src/assets/scss/registrant/index.scss ./src/static/css/registrant.css",
"css-landing-build": "node-sass ./src/assets/scss/landingpage/index.scss ./src/static/css/landingpage.css",
"css-landing-build:dev": "node-sass --watch ./src/assets/scss/landingpage/index.scss ./src/static/css/landingpage.css",
"css-live-build": "node-sass ./src/assets/scss/livepage/index.scss ./src/static/css/livepage.css",
"css-live-build:dev": "node-sass --watch ./src/assets/scss/livepage/index.scss ./src/static/css/livepage.css",
"db:migrate": "sequelize db:migrate",
"node-sass": "node-sass --output-style compressed -o dist/css src/scss"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannycho7/sbhacksiv.git"
},
"keywords": [],
"author": "Danny Cho",
"license": "ISC",
"bugs": {
"url": "https://github.com/dannycho7/SB_Hacks_V/issues"
},
"homepage": "https://github.com/dannycho7/SB_Hacks_V#readme",
"dependencies": {
"@sendgrid/mail": "^6.1.4",
"aws-sdk": "^2.288.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.18.3",
"bunyan": "^2.0.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^1.3.2",
"dotenv": "^4.0.0",
"ejs": "^2.5.6",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"hasha": "^3.0.0",
"helmet": "^3.21.2",
"html-minifier": "^3.5.4",
"mongoose": "^5.7.7",
"morgan": "^1.9.1",
"node-cache": "^4.1.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router-dom": "^4.1.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"semantic-ui-react": "^0.82.1",
"sequelize": "^4.44.3",
"sequelize-cli": "^4.0.0",
"serve-favicon": "^2.5.0",
"webpack": "^2.7.0"
},
"engines": {
"node": "8.2.1"
},
"devDependencies": {
"install-peers": "^1.0.3",
"node-sass": "^4.13.0",
"nodemon": "^1.18.3"
}
}