This repository was archived by the owner on Nov 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.52 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.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
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
90
91
92
93
94
95
96
97
{
"name": "task-manager-garrysh",
"version": "0.2.0",
"description": "Project task manager",
"main": "dist/index.js",
"bin": {
"task-manager-garrysh": "dist/app/server.js"
},
"engines": {
"node": "~8",
"yarn": "~1"
},
"scripts": {
"test": "jest",
"eslint": "eslint",
"babel-node": "babel-node",
"prepublishOnly": "npm run build",
"install": "webpack --mode production",
"console": "gulp console",
"start": "gulp server",
"initDb": "gulp initDb",
"watch": "nodemon"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"faker": "^4.1.0",
"istanbul": "^0.4.5",
"jest": "^23.1.0",
"jest-cli": "^23.1.0",
"jest-supertest-cookie-fix": "^1.0.0",
"node-pre-gyp": "^0.10.0",
"nodemon": "^1.17.5",
"sqlite3": "^4.0.0",
"supertest": "^3.1.0"
},
"dependencies": {
"autoprefixer": "^8.6.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.1.1",
"browser-sync": "^2.24.4",
"css-loader": "^0.28.11",
"date-fns": "^1.29.0",
"debug": "^3.1.0",
"dotenv": "^6.0.0",
"gulp": "^3.9.1",
"jquery": "^3.3.1",
"jquery-ujs": "^1.2.2",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-generic-session": "^2.0.1",
"koa-logger": "^3.2.0",
"koa-methodoverride": "^2.0.0",
"koa-pug": "^3.0.0-2",
"koa-router": "^7.4.0",
"koa-static": "^4.0.3",
"koa-webpack": "^5.0.2",
"lodash": "^4.17.10",
"node-sass": "^4.9.0",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"popper.js": "^1.14.3",
"postcss-loader": "^2.1.5",
"precss": "^3.1.2",
"rollbar": "^2.4.1",
"sass-loader": "^7.0.3",
"sequelize": "^4.37.10",
"sequelize-cli": "^4.0.0",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GarrySh/project-lvl4-s195.git"
},
"jest": {
"testEnvironment": "node"
},
"author": "Garry Sh",
"license": "ISC",
"bugs": {
"url": "https://github.com/GarrySh/project-lvl4-s195/issues"
},
"homepage": "https://github.com/GarrySh/project-lvl4-s195#readme"
}