-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.52 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.52 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
{
"name": "hh-library",
"version": "1.0.0",
"main": "index.js",
"author": "sintell",
"license": "MIT",
"private": true,
"scripts": {
"build": "yarn webpack --progress --display errors-only --config config/webpack.config.js",
"build-watch": "yarn webpack --config config/webpack.config.js --progress -w",
"dev-run": "NODE_ENV=development yarn nodemon build/server.js --watch build",
"run": "NODE_ENV=production yarn nodemon build/server.js",
"db-create": "yarn sequelize model:generate",
"db-migrate": "yarn sequelize db:migrate",
"postinstall": "yarn db-migrate && yarn build"
},
"dependencies": {
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-cors": "^0.0.16",
"koa-passport": "^4.0.1",
"koa-router": "^7.2.1",
"koa-session": "^5.5.1",
"koa2-swagger-ui": "^2.6.2",
"passport": "^0.4.0",
"passport-atlassian": "^1.0.0",
"passport-local": "^1.0.0",
"sequelize": "^4.22.5",
"sqlite3": "^3.1.13",
"swagger-jsdoc": "^1.9.7"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2017": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"nodemon": "^1.14.3",
"prettier-eslint-webpack-plugin": "^0.14.73",
"sequelize-cli": "^3.0.0",
"webpack": "^3.8.1",
"webpack-node-externals": "^1.6.0"
}
}