-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 845 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 845 Bytes
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
{
"name": "koa-starter",
"version": "1.0.0",
"main": "build/main",
"license": "MIT",
"scripts": {
"start": "node build/main",
"dev": "backpack dev",
"build": "backpack build",
"flow": "flow"
},
"dependencies": {
"dotenv": "^5.0.1",
"koa": "^2.5.0",
"koa-compose": "^4.0.0",
"koa-router": "^7.4.0",
"source-map-support": "^0.5.3"
},
"author": {
"name": "Gegham Samvelyan",
"github": "https://github.com/vamosgs"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.40",
"@babel/plugin-transform-flow-strip-types": "^7.0.0-beta.40",
"babel-eslint": "^8.2.2",
"backpack-core": "^0.5.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"flow-bin": "^0.66.0"
}
}