-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.1 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
{
"name": "btam-twilio-aqi-alert-app",
"author": {
"name": "Brian Tam",
"email": "briantam23@gmail.com",
"url": "https://briantam23.github.io"
},
"contributors": [
{
"name": "Brian Tam",
"email": "briantam23@gmail.com",
"url": "https://briantam23.github.io"
}
],
"homepage": "https://btam-twilio-aqi-alert.herokuapp.com",
"version": "1.0.0",
"description": "A Web App that incorporates the Twilio API with React / Redux to send users Air Quality Index (AQI) alerts whenever the AQIs exceed certain user-set thresholds. It also integrates the Google Maps API with AutoComplete & Geolocation along with the World AQI Map Overlay API in order to display AQIs around the world.",
"repository": {
"type": "git",
"url": "https://github.com/briantam23/twilio-aqi-alert-app.git"
},
"main": "server/index.js",
"scripts": {
"start": "node ./server/index.js",
"heroku-postbuild": "webpack -p",
"webpack": "./node_modules/webpack/bin/webpack.js",
"build": "npm run webpack -- --watch --mode=development",
"start:dev": "npm run build & DATABASE_URL=postgres://localhost/aqi-twilio-alert-app & JWT_SECRET='foo' nodemon server/index.js --ignore public --ignore src",
"test": "mocha ./test/*.test.js --require babel-polyfill --require ignore-styles --compilers js:babel-register",
"test:dev": "npm test -- --watch"
},
"keywords": [
"google-maps-api",
"media-queries",
"reactjs",
"nodejs",
"twilio",
"travis-ci",
"less",
"react-higher-order-components",
"react-hooks",
"regex",
"bcrypt"
],
"license": "ISC",
"babel": {
"presets": [
"env",
"react",
"stage-3"
],
"plugins": [
"transform-class-properties"
]
},
"dependencies": {
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"dotenv": "^7.0.0",
"express": "^4.16.3",
"jwt-simple": "^0.5.6",
"lodash": "^4.17.20",
"pg": "^7.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^7.1.0",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"request-promise": "^4.2.4",
"sequelize": "^5.15.1",
"twilio": "^3.33.0",
"volleyball": "^1.5.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.2.0",
"css-loader": "^2.1.0",
"dotenv-webpack": "^1.7.0",
"enzyme": "^3.6.0",
"enzyme-adapter-react-16": "^1.5.0",
"ignore-styles": "^5.0.1",
"jsdom": "^15.1.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mocha": "^5.2.0",
"redux-mock-store": "^1.5.3",
"sinon": "^7.2.3",
"sinon-chai": "^3.3.0",
"style-loader": "^0.23.1",
"supertest": "^3.4.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"engines": {
"node": "10.16.0",
"npm": "6.10.3"
}
}