-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.21 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
109
110
111
{
"name": "lifescope-location-estimator",
"version": "1.1.0",
"description": "Search and Explore the internet of you. lifescope.io",
"author": "LifeScope Labs (https://lifescope.io)",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/lifescopelabs/lifescope-app.git"
},
"main": "/server.js",
"engines": {
"node": "12.*",
"yarn": "1.*"
},
"scripts": {
"build": "sh build.sh",
"seed": "./node_modules/.bin/babel-node ./scripts/seed.js",
"dev": "NODE_ENV=dev babel-node server.js",
"start": "nodemon server.js --exec babel-node --presets env,stage-2",
"start-dev": "cross-env NODE_ENV=local node build/main.js",
"start-seed": "npm run seed && babel-node server.js",
"debug": "babel-node server.js --inspect-brk=localhost:3333",
"start:watch": "nodemon server.js -e js --exec babel-node",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint --ext .js ./",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow",
"nuxt-dev": "nuxt",
"nuxt-build": "nuxt build",
"nuxt-start": "nuxt start",
"nuxt-generate": "nuxt generate",
"serve": "node dist/app/server.js"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.1.0",
"babel-plugin-transform-es2015-modules-amd": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"backpack-core": "^0.8.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"expose-loader": "^0.7.5",
"flow-bin": "^0.121.0",
"gulp": "^4.0.2",
"gulp-add-src": "^1.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^6.0.0",
"gulp-gzip": "^1.4.2",
"gulp-header": "^2.0.9",
"gulp-jsonlint": "^1.3.1",
"gulp-less": "^4.0.1",
"gulp-lesshint": "^6.1.0",
"gulp-rename": "^2.0.0",
"gulp-tar": "^3.1.0",
"gulp-uglify": "^3.0.2",
"gulp-util": "^3.0.8",
"gulp-zip": "^5.0.1",
"jest": "^25.1.0",
"mongodb-memory-server": "^6.4.0",
"nodemon": "^2.0.2",
"path": "^0.12.7",
"prettier": "^1.19.1",
"request": "^2.88.2",
"run-sequence": "^2.2.1",
"webrtc-adapter": "^7.5.1"
},
"dependencies": {
"aws-sdk": "^2.642.0",
"babel-cli": "^6.26.0",
"bson": "^4.0.3",
"config": "^3.3.0",
"cross-env": "^7.0.2",
"debug": "^4.1.1",
"express": "^4.17.1",
"glob": "^7.1.6",
"http-errors": "^1.7.3",
"idempotent-babel-polyfill": "^7.4.4",
"intersection-observer": "^0.7.0",
"json-schema-ref-parser": "^8.0.0",
"lodash": "^4.17.15",
"math": "0.0.3",
"moment": "^2.24.0",
"mongodb": "^3.5.5",
"mongoose": "^5.9.5",
"node-uuid": "^1.4.8",
"qs": "^6.9.1",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"type-detect": "^4.0.8",
"useragent": "^2.3.0",
"utf-8-validate": "^5.0.2",
"uuid": "^3.3.2",
"uuid-parse": "^1.1.0",
"whatwg-fetch": "^3.0.0",
"ws": "^7.2.3"
}
}