-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.13 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.13 KB
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
{
"name": "eda-te-reo",
"version": "0.1.0",
"description": "Simple Te Reo translation API for students",
"main": "build/index.js",
"scripts": {
"build": "babel src --out-dir build && cp src/proverbs.json build",
"dev": "nodemon --exec babel-node --inspect src/index",
"postinstall": "npm run build",
"start": "node build/index"
},
"keywords": [
"maori",
"reo",
"enspiral",
"academy",
"eda"
],
"author": "EDA",
"license": "Apache-2.0",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-latest": "^6.24.1",
"google-translate-api": "^2.3.0",
"kcors": "^2.2.1",
"koa": "^2.4.1",
"koa-convert": "^1.2.0",
"koa-router": "^7.2.1",
"koa-static": "^3.0.0",
"pg": "^6.4.2"
},
"devDependencies": {
"nodemon": "^1.12.1"
},
"engines": {
"node": ">7.0"
},
"babel": {
"passPerPreset": true,
"presets": [
{
"plugins": [
"transform-runtime"
]
},
{
"passPerPreset": false,
"presets": [
"latest"
]
}
]
}
}