-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "easy-poll",
"description": "Application that makes it easy to poll a group of users",
"author": "Evan Heaton <[email protected]>",
"private": true,
"scripts": {
"watchify": "watchify -vd -p browserify -e ./src/main.js -o ./public/dist/build.js",
"backend": "nodemon server.js",
"dev": "npm-run-all --parallel watchify backend",
"build": "cross-env NODE_ENV=production browserify -g envify -e src/main.js | uglifyjs -c warnings=false -m > ./public/dist/build.js"
},
"dependencies": {
"EventEmitter": "^1.0.0",
"auth0-js": "^8.11.2",
"auth0-lock": "^10.24.1",
"axios": "^0.16.2",
"base-64": "^0.1.0",
"connect-ensure-login": "^0.1.1",
"cors": "^2.8.4",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-history-api-fallback": "^2.2.1",
"express-jwt": "^5.3.0",
"jwks-rsa": "^1.2.1",
"jwt-decode": "^2.2.0",
"passport": "^0.4.0",
"passport-auth0": "^0.6.0",
"path": "^0.12.7",
"shortid": "^2.2.8",
"socket.io": "^2.0.4",
"vue": "^2.0.1",
"vue-router": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.2.0",
"browserify": "^13.0.1",
"browserify-hmr": "^0.3.1",
"cross-env": "^1.0.6",
"envify": "^3.4.1",
"http-server": "^0.9.0",
"nodemon": "^1.12.1",
"npm-run-all": "^2.1.2",
"uglify-js": "^2.5.0",
"vueify": "^9.1.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"browser": {
"vue": "vue/dist/vue.common.js"
}
}