-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "slopeninja-backend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"ask-sdk-core": "^2.3.0",
"aws-sdk": "^2.224.1",
"basic-auth": "^1.1.0",
"bluebird": "^3.5.0",
"cheerio": "^1.0.0-rc.1",
"cron": "^1.3.0",
"datasets-female-first-names-en": "^1.0.0",
"datasets-male-first-names-en": "^1.0.1",
"expo-server-sdk": "^2.3.3",
"html-entities": "^1.2.1",
"i18next": "^13.0.0",
"i18next-sprintf-postprocessor": "^0.2.2",
"idx": "^2.2.0",
"isomorphic-fetch": "^2.2.1",
"joi": "^10.5.0",
"kcors": "2",
"knex": "^0.19.5",
"koa": "2",
"koa-alexa": "^0.0.2",
"koa-bodyparser": "next",
"koa-mount": "^4.0.0",
"koa-router": "next",
"mjml": "^3.3.5",
"moment": "^2.19.3",
"performance-now": "^2.1.0",
"pg": "^8.8.0",
"raven": "^2.3.0",
"statuses": "^1.3.1",
"uuid": "^8.3.1"
},
"engines": {
"node": "18.12.1"
},
"scripts": {
"dev": "node_modules/.bin/babel-node src/dev.js",
"start": "node build/src/server.js",
"build": "NODE_ENV=production node_modules/.bin/babel src/ -d build/src --ignore 'test.js'",
"lint": "node_modules/.bin/eslint src/",
"test": "npm run lint && jest",
"set-secrets": "cat .env.prod | tr '\n' ' ' | xargs flyctl secrets set"
},
"devDependencies": {
"@babel/node": "^7.9.0",
"babel-eslint": "^8.2.6",
"dotenv": "^2.0.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"jest": "^24.8.0"
}
}