-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 1.9 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
{
"name": "there-server",
"version": "1.7.2",
"description": "Back-end API for There app",
"main": "index.js",
"repository": "https://github.com/therepm/there-server.git",
"author": "Mohammad <mo@there.team> (http://morajabi.im/)",
"license": "MIT",
"dependencies": {
"@google-cloud/storage": "^1.6.0",
"@google/maps": "^0.4.5",
"apollo-server-express": "^1.3.2",
"bent": "^7.1.2",
"body-parser": "^1.19.0",
"chalk": "^2.3.0",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"cors": "^2.8.4",
"country-emoji": "^1.2.0",
"debug": "^3.1.0",
"dotenv": "^8.2.0",
"ejs": "^2.6.1",
"express": "^4.17.1",
"graphql": "^0.13.0",
"graphql-list-fields": "^2.0.2",
"graphql-playground-middleware-express": "^1.5.6",
"graphql-tools": "^2.20.2",
"helmet": "^3.11.0",
"jimp": "^0.9.6",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.5",
"lru-cache": "^4.1.2",
"mixpanel": "^0.9.1",
"mjml": "^4.0.5",
"ms": "^2.1.1",
"multer": "^1.3.0",
"mysql2": "^1.5.2",
"mz": "^2.7.0",
"node-fetch": "^2.6.0",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-twitter": "^1.0.4",
"postmark": "^1.6.1",
"pretty-error": "^2.1.1",
"qs": "^6.5.1",
"raven": "^2.4.1",
"semver": "^5.5.0",
"sequelize": "^4.33.4",
"shortid": "^2.2.8",
"socket.io": "^2.3.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"esm": "^3.2.25",
"jest": "^22.3.0",
"nodemon": "^1.14.12",
"now-env": "^3.0.3",
"rimraf": "^2.6.2",
"sequelize-cli": "^4.0.0"
},
"@std/esm": "cjs",
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"test": "jest",
"build-emails": "mjml ./email-templates/*.mjml -o ./email-templates/*.html"
}
}