-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.17 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.17 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "vi-task-manager",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"bin": {
"hexlet": "dist/bin/hexlet.js"
},
"engines": {
"node": "7.7.1"
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"gulp": "gulp",
"nodemon": "nodemon",
"test": "jest",
"babel-node": "babel-node",
"flow": "flow",
"flow-typed": "flow-typed",
"start": "gulp server",
"eslint": "eslint",
"webpack": "webpack",
"build": "npm run webpack -- -p --env production && babel src --out-dir dist --source-maps inline",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viprogramm/project-lvl4-s109.git"
},
"author": "Vitaliy Ti",
"license": "ISC",
"bugs": {
"url": "https://github.com/viprogramm/project-lvl4-s109/issues"
},
"homepage": "https://github.com/viprogramm/project-lvl4-s109#readme",
"dependencies": {
"babel-cli": "*",
"babel-core": "*",
"babel-loader": "*",
"babel-plugin-transform-runtime": "*",
"babel-polyfill": "*",
"babel-preset-env": "*",
"babel-preset-flow": "*",
"babel-preset-stage-0": "*",
"bootstrap": "4.0.0-alpha.6",
"css-loader": "*",
"debug": "*",
"dotenv": "^4.0.0",
"gulp": "*",
"gulp-util": "*",
"jquery": "^3.1.1",
"jquery-ujs": "^1.2.2",
"koa": "*",
"koa-bodyparser": "^4.1.0",
"koa-flash-simple": "*",
"koa-generic-session": "*",
"koa-logger": "*",
"koa-methodoverride": "^2.0.0",
"koa-pug": "^3.0.0-2",
"koa-router": "next",
"koa-static": "^3.0.0",
"koa-webpack": "^0.3.1",
"lodash": "*",
"pg": "^6.1.2",
"postcss-loader": "^2.0.5",
"rollbar": "^2.0.0",
"sequelize": "*",
"sqlite3": "*",
"style-loader": "*",
"umzug": "^1.11.0",
"webpack": "*"
},
"devDependencies": {
"babel-eslint": "*",
"eslint": "*",
"eslint-config-airbnb-base": "*",
"eslint-plugin-flowtype": "*",
"eslint-plugin-import": "*",
"faker": "^4.1.0",
"flow-bin": "^0.42",
"flow-typed": "*",
"jest": "^18",
"jest-supertest-matchers": "*",
"nodemon": "*",
"supertest": "*"
}
}